class'vector()'
vector()
Extends from ModelicaReference.Icons.Information (Icon for general information packages).
Information
Returns an array with one non-singleton dimension as vector
Syntax
vector(A)
Description
Returns a 1-vector, if A is a scalar and otherwise returns a vector containing all the elements of the array, provided there is at most one dimension size > 1.
Examples
Real A[1,2,1] = {{{3},{4}}};
Real v[2] = vector(A); // = {3,4}