view m-toolbox/classes/+utils/@xml/num2str.m @ 49:0bcdf74587d1
database-connection-manager
Cleanup
author
Daniele Nicolodi <nicolodi@science.unitn.it>
date
Wed, 07 Dec 2011 17:24:36 +0100 (2011-12-07)
parents
f0afece42f48
children
line source
+ − % NUM2STR uses sprintf to convert a data vector to a string with a fixed precision.
+ − %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+ − %
+ − % DESCRIPTION: uses sprintf to convert a data vector to a string with a
+ − % fixed precision.
+ − %
+ − % CALL: str = num2str(number);
+ − %
+ − % VERSION: $Id: num2str.m,v 1.2 2010/09/28 17:47:15 ingo Exp $
+ − %
+ − %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+ −
+ − function str = num2str(number)
+ − str = sprintf('%.17g ', number);
+ − end
+ −