|
Contents | Previous | Next | Subchapters |
| Syntax |
print namename(i)name(i,j)
|
| See Also | active |
Abbreviation
p
| |
| Menu Command | Debug | Print ... |
O> prompt you enter
x = {1, 2, 3}
y = {[1, 2], [3, 4]}
and then at the Debug> prompt you enter
print x
O-Matrix will respond
{
1
2
3
}
If you then enter
print x(3)
O-Matrix will respond
3
If you then enter
print y(2, 2)
O-Matrix will respond
4
print name(i) is used,
the corresponding matrix must be a vector.
The active
command can be used to determine
which variables can currently be printed.