

Adding a non-numerical header for a text file of numerical column values in Scilab
I'd tried using the 'cat' syntax
Header = cat(dims,LINE1,LINE2,LINE3,LINE4,LINE6);
csvWrite(coulumnvalues,filename,ascii(9),".",4,Header);
Each line is defined as LINE5=['']
I want to add tab seperater between words in this line. \t is not working. i've tried ascii(9) too. Please help me resolve the problem.
Scilab


There is a way specified in GNU Octave on how to do this. It requires a function named dlmwrite. Once the Scilab-Octave interface toolbox is released, you can call dlmwrite directly from Octave, and handle it.
Login to add comment