yok
yok

Reputation: 43

How to print a message in Scilab console window?

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

Answers (1)

user5694329
user5694329

Reputation: 412

You can use either the disp or the mprintf functions. Example:

disp('Hello World')

Upvotes: 3

Related Questions