<< disp | Display format | echo >> |
display(V) |
display(V, name) |
Result of executing a statement or expression
a character vector: variable name displayed.
display(V) displays information about the variable V.
Nelson calls display function whenever an object is referred to in a statement that is not terminated by a semicolon.
display(33, 'Hello')
display('Hello Nelson')
display(pi)
A = eye(3, 3); disp(A)
Version | Description |
---|---|
1.0.0 | initial version |
Allan CORNET