it convert number to string like matlab. use the command exec("num2str.sci",-1) for defining the function.
Upload date : 2016-04-21 13:55:26 MD5 : 3394107ce3637e84ac771ca9968cd88c SHA1 : d133935754189f5c9b4b355d12168e73c62c2b59 Downloads : 2441
??? string() already does it: --> M = [1 1e3*%pi -%e*1e-34 7e300] M = 1. 3141.5927 0. 7.00D+300 --> string(M) ans = !1 3141.5927 -2.718D-34 7.00D+300 ! --> num2str(M) // your implementation ans = 0000000000000000000000000030001000400011 ???