[Scilab-users] "msprintf" in the NIghty build of Scilab 6.0 fails

2015-10-25 Thread fujimoto2005
"msprintf" in scilab-master-1445614374 (64-bit) fails for vector input. Please try the following script. x=[1:10]/100 msprintf("%.1f%%\n",x*100) "Scilab 6.0 master" succeeded to generate vector outputs. But 1445614374 failed. It generate only the first output "1.0%". How can I genarate vector

Re: [Scilab-users] "msprintf" in the NIghty build of Scilab 6.0 fails

2015-10-25 Thread Samuel Gougeon
Hello, msprint() is designed to work row-wise => inputs must be columns: x=[1:10].'; msprintf("%.1f%%\n", x) But there is actually a bug with 6.0-a1, when "%%" is used in the format. It is now reported here: http://bugzilla.scilab.org/14221 Regards Samuel Gougeon