Mercurial > hg > ltpda
view m-toolbox/classes/+utils/@prog/csv.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
% CSV makes comma separated list of numbers % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % DESCRIPTION: CSV make comma separated list of numbers % % CALL: s = csv(x) % % INPUTS: x - the list of numbers to convert % % OUTPUTS: s - a makes comma separated list string % % EXAMPLE: s = utils.prog.csv([1:10]) % % VERSION: $Id: csv.m,v 1.2 2010/05/17 08:32:06 nicolodi Exp $ % % HISTORY: 14-05-2010 M Hueller % Creation % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% function s = csv(x) s = sprintf('%g,', x); s = s(1:end-1); end