Package | Description |
---|---|
Maths |
Provides maths classes.
|
Modifier and Type | Method and Description |
---|---|
SquareMatrix |
SquareMatrix.add(SquareMatrix o)
Adds a matrix to this one and returns a new matrix as the result
|
SquareMatrix |
SquareMatrix.exp()
Calculates e^A where A is the current matrix and returns a new matrix as
the result
|
SquareMatrix |
SquareMatrix.expMult(double x)
Calculates e^Ax where A is this matrix and returns a new matrix as the result.
|
SquareMatrix |
SquareMatrix.multiply(SquareMatrix o)
Multiplies this matrix by another (this × o) and returns a new
matrix as a result
|
Constructor and Description |
---|
SquareMatrix(double[][] m)
Default constructor
|