Reputation: 43
I am using scilab 5.5.2 version. How can I print a message in the console window of Scilab? What is the function used for that?
Upvotes: 2
Views: 11531
Reputation: 412
You can use either the disp or the mprintf functions. Example:
disp('Hello World')
Upvotes: 3