Value > Basic Data Values > BigMatrix Values, BigMatrixRowArray Values |
The BigMatrix class implements an MxN matrix for situations and calculations where the usual 4x3 Matrix3 class is not adequate.
The BigMatrixRowArray class implements an N element vector.
Each row in a BigMatrix value is a BigMatrixRowArray value.
Only Float values can be stored in the elements of a BigMatrixRowArray.
Constructs a BigMatrix value with the given number of rows and columns.
All elements will be initially filled with 0.0 values.
Get the number of rows and number of columns in the BigMatrix value.
Adds the two BigMatrix values together.
Both BigMatrix values must have the same size
Returns the BigMatrixRowArray value of the indexed row.
Returns the float value of the indexed column stored in the BigMatrixRowArray value.
Sets the value in the indexed column in the BigMatrixRowArray value.
Because accessors are themselves operands, these definitions are recursive, which means that you can string accessors together:
Returns the float value of the indexed row and column.
Sets the float value of the indexed row and column in the matrix.
Inverts the matrix in place (the input BigMatrix is modified).
The return value is also the inverted matrix.
Note that this method only works if this matrix is "square" (if m = n).
Returns the transpose of <BigMatrix> (result BigMatrix[i][j] = BigMatrix[j][i] ).
Frees all the elements and sets the matrix size to be 0x0
Deletes the current elements and sets the size of the matrix to <rows> x <columns>.
If the number of rows and columns are not equal, this method does nothing.
If the number of rows and columns are equal, this method sets the matrix to the identity (diagonal elements = 1, all other elements = 0).
If the parameter is an array of matrices, this function returns the value OK .
In both cases, the input BigMatrix values are set to the identity.
A BigMatrix object is a compound object, similar to an array of arrays. All of the BigMatrix methods operate directly on the components of the input BigMatrix. As described in Reference Assignment, this can cause complications if a BigMatrix object is referenced by more than one variable. If you assign a new value to an element of the matrix, or use any of the BigMatrix methods, the same object is still referenced by the variables.