| Type | Example O-Mode | Example M-Mode |
| Numer | -3.214e-12 |
-3.214e-12 |
| Vector | [1 2 3 4] |
[1,2,3,4] |
| Matrix | [1 2 ; 3 4] |
matrix([1,2],[3,4]) |
| Vectorelement | x(2) |
x[2] |
| Matrixelement | x(2,1) |
x[2,1] |
| Range | 2:5 |
|
| Variable | x = 2.321 |
x : 2.321; |