MatLab
The notation j:k gives a row matrix consisting of the integers from j through k.
The notation j:b:k gives a row matrix consisting of the integers from j through k in steps of b.
To get a vector of n linearly spaced points between lo and hi, use linspace(lo,hi,n)
To transpose a matrix m, write m’