'vector()'vector() |
This information is part of the Modelica Standard Library maintained by the Modelica Association.
Returns an array with one non-singleton dimension as vector
vector(A)
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.
Real A[1,2,1] = {{{3},{4}}}; Real v[2] = vector(A); // = {3,4}