Skip to content

Matrix🔗

Access🔗

get_diagonal_matrixGetDiagonalMatrix: Get the diagonal elements of a matrix.

get_full_matrixGetFullMatrix: Return all values of a matrix.

get_sub_matrixGetSubMatrix: Get a sub-matrix of a matrix.

get_value_matrixGetValueMatrix: Return one ore more elements of a matrix.

set_diagonal_matrixSetDiagonalMatrix: Set the diagonal elements of a matrix.

set_full_matrixSetFullMatrix: Set all values of a matrix.

set_sub_matrixSetSubMatrix: Set a sub-matrix of a matrix.

set_value_matrixSetValueMatrix: Set one or more elements of a matrix.

Arithmetic🔗

abs_matrixAbsMatrix: Compute the absolute values of the elements of a matrix.

abs_matrix_modAbsMatrixMod: Compute the absolute values of the elements of a matrix.

add_matrixAddMatrix: Add two matrices.

add_matrix_modAddMatrixMod: Add two matrices.

div_element_matrixDivElementMatrix: Divide matrices element-by-element.

div_element_matrix_modDivElementMatrixMod: Divide matrices element-by-element.

invert_matrixInvertMatrix: Invert a matrix.

invert_matrix_modInvertMatrixMod: Invert a matrix.

mult_element_matrixMultElementMatrix: Multiply matrices element-by-element.

mult_element_matrix_modMultElementMatrixMod: Multiply matrices element-by-element.

mult_matrixMultMatrix: Multiply two matrices.

mult_matrix_modMultMatrixMod: Multiply two matrices.

pow_element_matrixPowElementMatrix: Compute the power functions of the elements of a matrix.

pow_element_matrix_modPowElementMatrixMod: Compute the power functions of the elements of a matrix.

pow_matrixPowMatrix: Compute the power functions of a matrix.

pow_matrix_modPowMatrixMod: Compute the power functions of a matrix.

pow_scalar_element_matrixPowScalarElementMatrix: Compute the power functions of the elements of a matrix.

pow_scalar_element_matrix_modPowScalarElementMatrixMod: Compute the power functions of the elements of a matrix.

scale_matrixScaleMatrix: Scale a matrix.

scale_matrix_modScaleMatrixMod: Scale a matrix.

solve_matrixSolveMatrix: Compute the solution of a system of equations.

sqrt_matrixSqrtMatrix: Compute the square root values of the elements of a matrix.

sqrt_matrix_modSqrtMatrixMod: Compute the square root values of the elements of a matrix.

sub_matrixSubMatrix: Subtract two matrices.

sub_matrix_modSubMatrixMod: Subtract two matrices.

transpose_matrixTransposeMatrix: Transpose a matrix.

transpose_matrix_modTransposeMatrixMod: Transpose a matrix.

Creation🔗

clear_matrixClearMatrix: Free the memory of a matrix.

copy_matrixCopyMatrix: Copy a matrix.

create_matrixCreateMatrix: Create a matrix.

repeat_matrixRepeatMatrix: Repeat a matrix.

Decomposition🔗

decompose_matrixDecomposeMatrix: Decompose a matrix.

orthogonal_decompose_matrixOrthogonalDecomposeMatrix: Perform an orthogonal decomposition of a matrix.

svd_matrixSvdMatrix: Compute the singular value decomposition of a matrix.

Eigenvalues🔗

eigenvalues_general_matrixEigenvaluesGeneralMatrix: Compute the eigenvalues and optionally the eigenvectors of a general matrix.

eigenvalues_symmetric_matrixEigenvaluesSymmetricMatrix: Compute the eigenvalues and optionally eigenvectors of a symmetric matrix.

generalized_eigenvalues_general_matrixGeneralizedEigenvaluesGeneralMatrix: Compute the generalized eigenvalues and optionally the generalized eigenvectors of general matrices.

generalized_eigenvalues_symmetric_matrixGeneralizedEigenvaluesSymmetricMatrix: Compute the generalized eigenvalues and optionally generalized eigenvectors of symmetric input matrices.

Features🔗

determinant_matrixDeterminantMatrix: Compute the determinant of a matrix.

get_size_matrixGetSizeMatrix: Get the size of a matrix.

max_matrixMaxMatrix: Returns the elementwise maximum of a matrix.

mean_matrixMeanMatrix: Returns the elementwise mean of a matrix.

min_matrixMinMatrix: Returns the elementwise minimum of a matrix.

norm_matrixNormMatrix: Norm of a matrix.

sum_matrixSumMatrix: Returns the elementwise sum of a matrix.

File🔗

deserialize_matrixDeserializeMatrix: Deserialize a serialized matrix.

read_matrixReadMatrix: Read a matrix from a file.

serialize_matrixSerializeMatrix: Serialize a matrix.

write_matrixWriteMatrix: Write a matrix to a file.