Please note that the recommended version of Scilab is 2025.0.0. This page might be outdated.
See the recommended documentation of this function
disp
displays variables
Calling Sequence
disp(x1,[x2,...xn])
Description
displays xi
with the current format. xi
's are arbitrary
objects (matrices of constants, strings, functions, lists, ...)
Display of objects defined by tlist
may be overloaded by the
definition of a function. This function must have no output argument a
single input argument ant it's name is formed as follow
%<tlist_type>_p
where %<tlist_type>
stands for the first
entry of the tlist type component.
The lines function may be used to control the output.
disp("a",1,"c")
display order: last input argument will be the first displayed (LIFO).
See Also
Report an issue | ||
<< Output functions | Output functions | mprintf >> |