Skip to content
This repository was archived by the owner on May 21, 2020. It is now read-only.
Florian Rappl edited this page Dec 21, 2014 · 2 revisions

vector

Creates a vector (a n-times-1 matrix) out of the given data.

vector(M)

Creates a vector with the length of the given matrix. An mxn-matrix will be transformed to a vector with length m*n.

Argument M

Matrix

Returns 1. entry

Matrix

Example

vector([1,2;3,4])

Creates the vector [1, 2, 3, 4] out of the given 2x2 matrix.

Clone this wiki locally