Mercurial > hg > ltpda
view m-toolbox/classes/+utils/@xml/num2str.m @ 52:daf4eab1a51e database-connection-manager tip
Fix. Default password should be [] not an empty string
author | Daniele Nicolodi <nicolodi@science.unitn.it> |
---|---|
date | Wed, 07 Dec 2011 17:29:47 +0100 |
parents | f0afece42f48 |
children |
line wrap: on
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