Matrix Constructor Function

The matrix constructor function returns the matrix composed by the rows . Arguments are appended row by row to the result object. Boolean values are going to be transformed in floating decimal form. Vector objects are going to be appended as a row. Matrix objects are going to be appended row by row beginning with the first.

Syntax
  • matrix

  • mat

Types
 Variable NameValue TypeVariable Type
Arguments:x1 real, complexboolean, scalar, vector, matrix
:  
xn real, complexboolean, scalar, vector, matrix
Result: zreal, complex matrix
Examples
IDDescriptionTypeValueExpression
x1ArgumentREAL11
x2ArgumentREAL22
z Result REAL MATRIX

mat(x1, x2)
IDDescriptionTypeValueExpression
x1ArgumentREAL VECTOR

[1,2]
x2ArgumentREAL VECTOR [3,4]
z Result REAL MATRIX

mat(x1, x2)