Back to Aurora Vision Library Lite website

You are here: Start » Basic » Matrix

Matrix

Select a function from the list below.

Icon Name Description / Applications
AddMatrices

Adds two matrices element by element.

CombineMatrices

Combines two matrices horizontally.

ConcatenateMatrices

Combines two matrices horizontally.

CreateIdentityMatrix

Creates a square matrix with ones on the main diagonal, and zeros elsewhere.

CreateUniformMatrix

Creates a matrix with the specified dimensions and filled with a uniform element value.

InvertMatrix

Finds the inverse of a square matrix.

LoadMatrix

Loads a serialized Matrix object from an AVDATA file.

MultiplyMatrices

Multiplies two matrices element by element.

MultiplyMatrixByReal

Multiplies all elements of a matrix by a value.

SaveMatrix

Saves a serialized Matrix object as AVDATA file.

StackMatrices

Combines two matrices vertically.

SubtractMatrices

Subtracts two matrices element by element.

TransposeMatrix

Swaps rows with columns in a matrix.

Select Filter Equivalent below.

Icon Name Description / Applications
AccessMatrix

Returns matrix dimensions and its elements row-by-row as a real array.

GetMatrixColumn

Gets the values from a single column of a matrix.

GetMatrixElement

Gets the value of a single element of a matrix.

GetMatrixRow

Gets the values from a single row of a matrix.

MakeMatrix

Creates a matrix of specified dimensions with initial elements given row-by-row.

MatrixToRealArrayArray

Converts a matrix to an array of its rows.

SetMatrixColumn

Sets elements of a matrix column.

SetMatrixElement

Sets a single element of a matrix.

SetMatrixRow

Sets elements of a matrix row.

SkipEmptyMatrix

If the input matrix dimensions are non-zero, then the matrix is copied to the output; otherwise Nil value is returned.


Secures against domain errors caused by empty matrices.