Vector
Jump to navigation
Jump to search
A vector can be created by the following methods:
expression : expression
The given expressions are the first and last element of the vector. In between more elements will be interpolated to make a total of 20, e.g.x = 1:20
will give a vector containing the integer numbers from 1 to 20.expression : expression : expression
This form gives the step value for interpolating the elements between start and end element in the third expression.bracket expression ; expression ... bracket
This form lists all elements of the vector explicitly.STACK { expression # expression # ... }
Office math syntax.- By extracting a row or column from a matrix, either through the mindex function or by vector and matrix element access.