

print Question
a=rand(3,3);p=poly([1,2,3],'s');l=list(1,'asdf',[1 2 3]); print(%io(2),a,p,l)
The previous snippet is from the print help tool. When I run this I get
1
asdf
1 2 3
the last parameter.
There are no a or p parameters shown! According to the help tool I should see all three parameters.
Can someone explain how I'm wrong.
Scilab


It works by simply copy-pasting the code in to scilab console OR by executing the code from the help window. There is no reason for it to not print the variables.
Login to add comment