Java org.apache.commons.math3.linear MatrixUtils fields, constructors, methods, implement or subclass

Example usage for Java org.apache.commons.math3.linear MatrixUtils fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.apache.commons.math3.linear MatrixUtils.

The text is from its open source code.

Method

voidcheckAdditionCompatible(final AnyMatrix left, final AnyMatrix right)
Check if matrices are addition compatible.
voidcheckColumnIndex(final AnyMatrix m, final int column)
Check if a column index is valid.
voidcheckMultiplicationCompatible(final AnyMatrix left, final AnyMatrix right)
Check if matrices are multiplication compatible
voidcheckRowIndex(final AnyMatrix m, final int row)
Check if a row index is valid.
RealMatrixcreateColumnRealMatrix(double[] columnData)
Creates a column RealMatrix using the data from the input array.
RealMatrixcreateRealDiagonalMatrix(final double[] diagonal)
Returns a diagonal matrix with specified elements.
RealMatrixcreateRealIdentityMatrix(int dimension)
Returns dimension x dimension identity matrix.
RealMatrixcreateRealMatrix(double[][] data)
Returns a RealMatrix whose entries are the the values in the the input array.
RealMatrixcreateRealMatrix(final int rows, final int columns)
Returns a RealMatrix with specified dimensions.
RealVectorcreateRealVector(double[] data)
Creates a RealVector using the data from the input array.
RealMatrixcreateRowRealMatrix(double[] rowData)
Create a row RealMatrix using the data from the input array.
booleanisSymmetric(RealMatrix matrix, double eps)
Checks whether a matrix is symmetric.