save command or function
Title
Question
I tried using save as function as well as command, but i am getting these warnings and not getting desired results:
-->save ('matrix-A-B.dat',A,B)
Warning: Scilab 6 will not support the file format used.
Warning: Please quote the variable declaration. Example, save('myData.sod',a) becomes save('myData.sod','a').
Warning: See help('save') for the rational.
-->save('matrix-A-B.dat',A,B)
Warning: Scilab 6 will not support the file format used.
Warning: Please quote the variable declaration. Example, save('myData.sod',a) becomes save('myData.sod','a').
Warning: See help('save') for the rational.
-->save matrix-A-B
!--error 21
Invalid index.
at line 1005 of function %_save called by :
save matrix-A-B
If anybody have used save in user defined input output. Please help.
Scilab User-Defined-Input-and-Output 08-09 min 30-40 sec
Answers:
<span style="font-size: 15px;"> save("matrix-a-b.sod", ['A','B']) to remove the warning.</span>
Login to add comment