Matrix🔗
Access🔗
get_diagonal_matrix: Get the diagonal elements of a matrix.
get_full_matrix: Return all values of a matrix.
get_sub_matrix: Get a sub-matrix of a matrix.
get_value_matrix: Return one ore more elements of a matrix.
set_diagonal_matrix: Set the diagonal elements of a matrix.
set_full_matrix: Set all values of a matrix.
set_sub_matrix: Set a sub-matrix of a matrix.
set_value_matrix: Set one or more elements of a matrix.
Arithmetic🔗
abs_matrix: Compute the absolute values of the elements of a matrix.
abs_matrix_mod: Compute the absolute values of the elements of a matrix.
add_matrix: Add two matrices.
add_matrix_mod: Add two matrices.
div_element_matrix: Divide matrices element-by-element.
div_element_matrix_mod: Divide matrices element-by-element.
invert_matrix: Invert a matrix.
invert_matrix_mod: Invert a matrix.
mult_element_matrix: Multiply matrices element-by-element.
mult_element_matrix_mod: Multiply matrices element-by-element.
mult_matrix: Multiply two matrices.
mult_matrix_mod: Multiply two matrices.
pow_element_matrix: Compute the power functions of the elements of a matrix.
pow_element_matrix_mod: Compute the power functions of the elements of a matrix.
pow_matrix: Compute the power functions of a matrix.
pow_matrix_mod: Compute the power functions of a matrix.
pow_scalar_element_matrix: Compute the power functions of the elements of a matrix.
pow_scalar_element_matrix_mod: Compute the power functions of the elements of a matrix.
scale_matrix: Scale a matrix.
scale_matrix_mod: Scale a matrix.
solve_matrix: Compute the solution of a system of equations.
sqrt_matrix: Compute the square root values of the elements of a matrix.
sqrt_matrix_mod: Compute the square root values of the elements of a matrix.
sub_matrix: Subtract two matrices.
sub_matrix_mod: Subtract two matrices.
transpose_matrix: Transpose a matrix.
transpose_matrix_mod: Transpose a matrix.
Creation🔗
clear_matrix: Free the memory of a matrix.
copy_matrix: Copy a matrix.
create_matrix: Create a matrix.
repeat_matrix: Repeat a matrix.
Decomposition🔗
decompose_matrix: Decompose a matrix.
orthogonal_decompose_matrix: Perform an orthogonal decomposition of a matrix.
svd_matrix: Compute the singular value decomposition of a matrix.
Eigenvalues🔗
eigenvalues_general_matrix: Compute the eigenvalues and optionally the eigenvectors of a general
matrix.
eigenvalues_symmetric_matrix: Compute the eigenvalues and optionally eigenvectors of a symmetric
matrix.
generalized_eigenvalues_general_matrix: Compute the generalized eigenvalues and optionally the generalized
eigenvectors of general matrices.
generalized_eigenvalues_symmetric_matrix: Compute the generalized eigenvalues and optionally generalized
eigenvectors of symmetric input matrices.
Features🔗
determinant_matrix: Compute the determinant of a matrix.
get_size_matrix: Get the size of a matrix.
max_matrix: Returns the elementwise maximum of a matrix.
mean_matrix: Returns the elementwise mean of a matrix.
min_matrix: Returns the elementwise minimum of a matrix.
norm_matrix: Norm of a matrix.
sum_matrix: Returns the elementwise sum of a matrix.
File🔗
deserialize_matrix: Deserialize a serialized matrix.
read_matrix: Read a matrix from a file.
serialize_matrix: Serialize a matrix.
write_matrix: Write a matrix to a file.