Index
All Classes and Interfaces|All Packages
A
- add(double[][]) - Method in class com.mvohm.quadmatrix.BigDecimalMatrix
-
Adds the given
matrixBpassed in as a two-dimentional array ofdoubles to this matrix and returns the sum. - add(double[][]) - Method in class com.mvohm.quadmatrix.DoubleMatrix
-
Adds the given
matrixBpassed in as a two-dimentional array ofdoubles to this matrix and returns the sum. - add(double[][]) - Method in class com.mvohm.quadmatrix.Matrix
-
Adds the given
matrixBpassed in as a two-dimentional array ofdoubles to this matrix and returns the sum. - add(double[][]) - Method in class com.mvohm.quadmatrix.QuadrupleMatrix
-
Adds the given
matrixBpassed in as a two-dimentional array ofdoubles to this matrix and returns the sum. - add(Matrix) - Method in class com.mvohm.quadmatrix.BigDecimalMatrix
-
Adds the given
matrixBto this matrix and returns the sum. - add(Matrix) - Method in class com.mvohm.quadmatrix.DoubleMatrix
-
Adds the given
matrixBto this matrix and returns the sum. - add(Matrix) - Method in class com.mvohm.quadmatrix.Matrix
-
Adds the given
matrixBto this matrix and returns the sum. - add(Matrix) - Method in class com.mvohm.quadmatrix.QuadrupleMatrix
-
Adds the given
matrixBto this matrix and returns the sum. - add(Number[][]) - Method in class com.mvohm.quadmatrix.BigDecimalMatrix
-
Adds the given
matrixBpassed in as a two-dimentional array of Number to this matrix and returns the sum. - add(Number[][]) - Method in class com.mvohm.quadmatrix.DoubleMatrix
-
Adds the given
matrixBpassed in as a two-dimentional array of Number to this matrix and returns the sum. - add(Number[][]) - Method in class com.mvohm.quadmatrix.Matrix
-
Adds the given
matrixBpassed in as a two-dimentional array of Number to this matrix and returns the sum. - add(Number[][]) - Method in class com.mvohm.quadmatrix.QuadrupleMatrix
-
Adds the given
matrixBpassed in as a two-dimentional array of Number to this matrix and returns the sum.
B
- BigDecimalMatrix - Class in com.mvohm.quadmatrix
-
An implementation of the abstract class
Matrixthat uses an array ofBigDecimalvalues to store the internal data and arithmetic provided byBigDecimalto perform calculations. - BigDecimalMatrix(double[][]) - Constructor for class com.mvohm.quadmatrix.BigDecimalMatrix
-
Creates a new
BigDecimalMatrixwhose inner data are obtained by converting the values of the givensourcearray into correspondingBigDecimalvalues byBigDecimal.valueOf(double)method, and the default values of theneedToScaleflag andprecisionfield. - BigDecimalMatrix(double[][], boolean) - Constructor for class com.mvohm.quadmatrix.BigDecimalMatrix
-
Creates a new
BigDecimalMatrixwhose inner data are obtained by converting the values of the givensourcearray into correspondingBigDecimalvalues byBigDecimal.valueOf(double)method, the specified value of theneedToScaleflag, and the default precision set for the class. - BigDecimalMatrix(double[][], boolean, int) - Constructor for class com.mvohm.quadmatrix.BigDecimalMatrix
-
Creates a new
BigDecimalMatrixwhose inner data are obtained by converting the values of the givensourcearray into correspondingBigDecimalvalues byBigDecimal.valueOf(double)method, and the specified values of theneedToScaleflag andprecisionfield. - BigDecimalMatrix(double[][], int) - Constructor for class com.mvohm.quadmatrix.BigDecimalMatrix
-
Creates a new
BigDecimalMatrixwhose inner data are obtained by converting the values of the givensourcearray into correspondingBigDecimalvalues byBigDecimal.valueOf(double)method, the default value of theneedToScaleflag and the specified precision. - BigDecimalMatrix(Matrix) - Constructor for class com.mvohm.quadmatrix.BigDecimalMatrix
-
Creates a new
BigDecimalMatrixwith a copy of the data of the givensourcematrix and the default values of theneedToScaleflag andprecisionfield. - BigDecimalMatrix(Matrix, boolean) - Constructor for class com.mvohm.quadmatrix.BigDecimalMatrix
-
Creates a new
BigDecimalMatrixwith a copy of the data of the givensourcematrix, the specified value of theneedToScaleflag, and the default precision set for the class. - BigDecimalMatrix(Matrix, boolean, int) - Constructor for class com.mvohm.quadmatrix.BigDecimalMatrix
-
Creates a new
BigDecimalMatrixwith a copy of the data of the givensourcematrix and the specified values of theneedToScaleflag andprecisionfield. - BigDecimalMatrix(Matrix, int) - Constructor for class com.mvohm.quadmatrix.BigDecimalMatrix
-
Creates a new
BigDecimalMatrixwith a copy of the data of the givensourcematrix, the default value of theneedToScaleflag, and the specified precision. - BigDecimalMatrix(Number[][]) - Constructor for class com.mvohm.quadmatrix.BigDecimalMatrix
-
Creates a new
BigDecimalMatrixwith a copy of the data of the givensourcearray and the specified value of theneedToScaleflag. - BigDecimalMatrix(Number[][], boolean) - Constructor for class com.mvohm.quadmatrix.BigDecimalMatrix
-
Creates a new
BigDecimalMatrixwith a copy of the data of the givensourcearray, the specified value of theneedToScaleflag, and the default precision set for the class. - BigDecimalMatrix(Number[][], boolean, int) - Constructor for class com.mvohm.quadmatrix.BigDecimalMatrix
-
Creates a new
BigDecimalMatrixwith a copy of the data of the givensourcearray, and the specified values of theneedToScaleflag andprecisionfield. - BigDecimalMatrix(Number[][], int) - Constructor for class com.mvohm.quadmatrix.BigDecimalMatrix
-
Creates a new
BigDecimalMatrixwith a copy of the data of the givensourcearray, the default value of theneedToScaleflag and the specified precision.
C
- com.mvohm.quadmatrix - package com.mvohm.quadmatrix
-
A simple library for matrix calculations on square matrices of real numbers, with different levels of precision.
- cond() - Method in class com.mvohm.quadmatrix.BigDecimalMatrix
-
Computes the condition number of the matrix, ║A║•║A-1║, and returns its value as a
doublevalue. - cond() - Method in class com.mvohm.quadmatrix.DoubleMatrix
-
Computes the condition number of the matrix, ║A║•║A-1║, and returns its value as a
doublevalue. - cond() - Method in class com.mvohm.quadmatrix.Matrix
-
Computes the condition number of the matrix, ║A║•║A-1║, and returns its value as a
doublevalue. - cond() - Method in class com.mvohm.quadmatrix.QuadrupleMatrix
-
Computes the condition number of the matrix, ║A║•║A-1║, and returns its value as a
doublevalue.
D
- determinant() - Method in class com.mvohm.quadmatrix.BigDecimalMatrix
-
Computes the determinant of the matrix and returns its value as a Number value.
- determinant() - Method in class com.mvohm.quadmatrix.DoubleMatrix
-
Computes the determinant of the matrix and returns its value as a Number value.
- determinant() - Method in class com.mvohm.quadmatrix.Matrix
-
Computes the determinant of the matrix and returns its value as a Number value.
- determinant() - Method in class com.mvohm.quadmatrix.QuadrupleMatrix
-
Computes the determinant of the matrix and returns its value as a Number value.
- determinantAsBigDecimal() - Method in class com.mvohm.quadmatrix.BigDecimalMatrix
-
Computes the determinant of the matrix and returns its value as a BigDecimal value.
- determinantAsBigDecimal() - Method in class com.mvohm.quadmatrix.DoubleMatrix
-
Computes the determinant of the matrix and returns its value as a BigDecimal value.
- determinantAsBigDecimal() - Method in class com.mvohm.quadmatrix.Matrix
-
Computes the determinant of the matrix and returns its value as a BigDecimal value.
- determinantAsBigDecimal() - Method in class com.mvohm.quadmatrix.QuadrupleMatrix
-
Computes the determinant of the matrix and returns its value as a BigDecimal value.
- determinantAsDouble() - Method in class com.mvohm.quadmatrix.BigDecimalMatrix
-
Computes the determinant of the matrix and returns its value as a
doublevalue. - determinantAsDouble() - Method in class com.mvohm.quadmatrix.DoubleMatrix
-
Computes the determinant of the matrix and returns its value as a
doublevalue. - determinantAsDouble() - Method in class com.mvohm.quadmatrix.Matrix
-
Computes the determinant of the matrix and returns its value as a
doublevalue. - determinantAsDouble() - Method in class com.mvohm.quadmatrix.QuadrupleMatrix
-
Computes the determinant of the matrix and returns its value as a
doublevalue. - determinantAsQuadruple() - Method in class com.mvohm.quadmatrix.BigDecimalMatrix
-
Computes the determinant of the matrix and returns its value as a Quadruple value.
- determinantAsQuadruple() - Method in class com.mvohm.quadmatrix.DoubleMatrix
-
Computes the determinant of the matrix and returns its value as a Quadruple value.
- determinantAsQuadruple() - Method in class com.mvohm.quadmatrix.Matrix
-
Computes the determinant of the matrix and returns its value as a Quadruple value.
- determinantAsQuadruple() - Method in class com.mvohm.quadmatrix.QuadrupleMatrix
-
Computes the determinant of the matrix and returns its value as a Quadruple value.
- DoubleMatrix - Class in com.mvohm.quadmatrix
-
An implementation of the abstract class
Matrixthat uses an array of primitivedoublevalues to store the matrix elements and standarddoublearithmetic to perform calculations. - DoubleMatrix(double[][]) - Constructor for class com.mvohm.quadmatrix.DoubleMatrix
-
Creates a new
DoubleMatrixwith a copy of the data of the givensourcearray and the default value of theneedToScaleflag. - DoubleMatrix(double[][], boolean) - Constructor for class com.mvohm.quadmatrix.DoubleMatrix
-
Creates a new
DoubleMatrixwith a copy of the data of the givensourcearray and the value of theneedToScaleflag that is passed in as theneedToScaleargument. - DoubleMatrix(Matrix) - Constructor for class com.mvohm.quadmatrix.DoubleMatrix
-
Creates a new
DoubleMatrixwith a copy of the data of the givensourcematrix and the default value of theneedToScaleflag. - DoubleMatrix(Matrix, boolean) - Constructor for class com.mvohm.quadmatrix.DoubleMatrix
-
Creates a new
DoubleMatrixwith a copy of the data of the givensourcematrix and the value of theneedToScaleflag that is passed in as theneedToScaleargument. - DoubleMatrix(Number[][]) - Constructor for class com.mvohm.quadmatrix.DoubleMatrix
-
Creates a new
DoubleMatrixwith a copy of the data of the givensourcearray and the default value of theneedToScaleflag. - DoubleMatrix(Number[][], boolean) - Constructor for class com.mvohm.quadmatrix.DoubleMatrix
-
Creates a new
DoubleMatrixwith a copy of the data of the givensourcearray and the value of theneedToScaleflag that is passed in as theneedToScaleargument.
E
- equals(Object) - Method in class com.mvohm.quadmatrix.BigDecimalMatrix
-
Indicates whether the other
Matrixis equal to this one. - equals(Object) - Method in class com.mvohm.quadmatrix.DoubleMatrix
-
Indicates whether the other
Matrixis equal to this one. - equals(Object) - Method in class com.mvohm.quadmatrix.Matrix
-
Indicates whether the other
Matrixis equal to this one. - equals(Object) - Method in class com.mvohm.quadmatrix.QuadrupleMatrix
-
Indicates whether the other
Matrixis equal to this one.
G
- getBigDecimalData() - Method in class com.mvohm.quadmatrix.BigDecimalMatrix
-
Returns a two-dimentional array of
BigDecimalinstances containing the values of the corresponding matrix elements. - getBigDecimalData() - Method in class com.mvohm.quadmatrix.DoubleMatrix
-
Returns a two-dimentional array of
BigDecimalinstances containing the values of the corresponding matrix elements. - getBigDecimalData() - Method in class com.mvohm.quadmatrix.Matrix
-
Returns a two-dimentional array of
BigDecimalinstances containing the values of the corresponding matrix elements. - getBigDecimalData() - Method in class com.mvohm.quadmatrix.QuadrupleMatrix
-
Returns a two-dimentional array of
BigDecimalinstances containing the values of the corresponding matrix elements. - getBigDecimalMatrixSolution() - Method in class com.mvohm.quadmatrix.BigDecimalMatrix
-
Returns the last of the previously found matrix solutions, X, to a matrix equation of form AX = B, as a two-dimentional array of BigDecimals.
- getBigDecimalMatrixSolution() - Method in class com.mvohm.quadmatrix.DoubleMatrix
-
Returns the last of the previously found matrix solutions, X, to a matrix equation of form AX = B, as a two-dimentional array of BigDecimals.
- getBigDecimalMatrixSolution() - Method in class com.mvohm.quadmatrix.Matrix
-
Returns the last of the previously found matrix solutions, X, to a matrix equation of form AX = B, as a two-dimentional array of BigDecimals.
- getBigDecimalMatrixSolution() - Method in class com.mvohm.quadmatrix.QuadrupleMatrix
-
Returns the last of the previously found matrix solutions, X, to a matrix equation of form AX = B, as a two-dimentional array of BigDecimals.
- getBigDecimalSolution() - Method in class com.mvohm.quadmatrix.BigDecimalMatrix
-
Returns the last of the previously found vector solutions, x, to a system of linear equations of form Ax = b, as an array of BigDecimals.
- getBigDecimalSolution() - Method in class com.mvohm.quadmatrix.DoubleMatrix
-
Returns the last of the previously found vector solutions, x, to a system of linear equations of form Ax = b, as an array of BigDecimals.
- getBigDecimalSolution() - Method in class com.mvohm.quadmatrix.Matrix
-
Returns the last of the previously found vector solutions, x, to a system of linear equations of form Ax = b, as an array of BigDecimals.
- getBigDecimalSolution() - Method in class com.mvohm.quadmatrix.QuadrupleMatrix
-
Returns the last of the previously found vector solutions, x, to a system of linear equations of form Ax = b, as an array of BigDecimals.
- getData() - Method in class com.mvohm.quadmatrix.BigDecimalMatrix
-
Returns a two-dimentional array of
Numbercontaining the values of the corresponding matrix elements. - getData() - Method in class com.mvohm.quadmatrix.DoubleMatrix
-
Returns a two-dimentional array of
Numbercontaining the values of the corresponding matrix elements. - getData() - Method in class com.mvohm.quadmatrix.Matrix
-
Returns a two-dimentional array of
Numbercontaining the values of the corresponding matrix elements. - getData() - Method in class com.mvohm.quadmatrix.QuadrupleMatrix
-
Returns a two-dimentional array of
Numbercontaining the values of the corresponding matrix elements. - getDefaultPrecision() - Static method in class com.mvohm.quadmatrix.BigDecimalMatrix
-
Returns the current value of the precision used by default when creating new instances with constructors that don't have
precisionparameter. - getDefaultScaling() - Static method in class com.mvohm.quadmatrix.BigDecimalMatrix
-
Returns the value of the static
#scaleByDefaultflag that is used to set corresponding instance flags when creating a new instances by constructors withoutneedToScaleparameter. - getDefaultScaling() - Static method in class com.mvohm.quadmatrix.DoubleMatrix
-
Returns the value of the static
#scaleByDefaultflag that is used to set corresponding instance flags when creating a new instances by constructors withoutneedToScaleparameter. - getDefaultScaling() - Static method in class com.mvohm.quadmatrix.QuadrupleMatrix
-
Returns the value of the static
#scaleByDefaultflag that is used to set corresponding instance flags when creating a new instances by constructors withoutneedToScaleparameter. - getDoubleData() - Method in class com.mvohm.quadmatrix.BigDecimalMatrix
-
Returns a two-dimentional array of primitive
doublevalues containing the values of the corresponding matrix elements, perhaps rounded. - getDoubleData() - Method in class com.mvohm.quadmatrix.DoubleMatrix
-
Returns a two-dimentional array of primitive
doublevalues containing the values of the corresponding matrix elements, perhaps rounded. - getDoubleData() - Method in class com.mvohm.quadmatrix.Matrix
-
Returns a two-dimentional array of primitive
doublevalues containing the values of the corresponding matrix elements, perhaps rounded. - getDoubleData() - Method in class com.mvohm.quadmatrix.QuadrupleMatrix
-
Returns a two-dimentional array of primitive
doublevalues containing the values of the corresponding matrix elements, perhaps rounded. - getDoubleMatrixSolution() - Method in class com.mvohm.quadmatrix.BigDecimalMatrix
-
Returns the last of the previously found matrix solutions, X, to a matrix equation of form AX = B, as a two-dimentional array of primitive
doubles. - getDoubleMatrixSolution() - Method in class com.mvohm.quadmatrix.DoubleMatrix
-
Returns the last of the previously found matrix solutions, X, to a matrix equation of form AX = B, as a two-dimentional array of primitive
doubles. - getDoubleMatrixSolution() - Method in class com.mvohm.quadmatrix.Matrix
-
Returns the last of the previously found matrix solutions, X, to a matrix equation of form AX = B, as a two-dimentional array of primitive
doubles. - getDoubleMatrixSolution() - Method in class com.mvohm.quadmatrix.QuadrupleMatrix
-
Returns the last of the previously found matrix solutions, X, to a matrix equation of form AX = B, as a two-dimentional array of primitive
doubles. - getDoubleSolution() - Method in class com.mvohm.quadmatrix.BigDecimalMatrix
-
Returns a copy of the last previously found vector solutions, x, to a system of linear equations of form Ax = b, as an array of
doubles. - getDoubleSolution() - Method in class com.mvohm.quadmatrix.DoubleMatrix
-
Returns a copy of the last previously found vector solutions, x, to a system of linear equations of form Ax = b, as an array of
doubles. - getDoubleSolution() - Method in class com.mvohm.quadmatrix.Matrix
-
Returns a copy of the last previously found vector solutions, x, to a system of linear equations of form Ax = b, as an array of
doubles. - getDoubleSolution() - Method in class com.mvohm.quadmatrix.QuadrupleMatrix
-
Returns a copy of the last previously found vector solutions, x, to a system of linear equations of form Ax = b, as an array of
doubles. - getErrorCode() - Method in class com.mvohm.quadmatrix.BigDecimalMatrix
-
Returns a string designation of the error code if an error has occurred during the solving or inversion of the matrix.
- getErrorCode() - Method in class com.mvohm.quadmatrix.DoubleMatrix
-
Returns a string designation of the error code if an error has occurred during the solving or inversion of the matrix.
- getErrorCode() - Method in class com.mvohm.quadmatrix.Matrix
-
Returns a string designation of the error code if an error has occurred during the solving or inversion of the matrix.
- getErrorCode() - Method in class com.mvohm.quadmatrix.QuadrupleMatrix
-
Returns a string designation of the error code if an error has occurred during the solving or inversion of the matrix.
- getMatrixSolution() - Method in class com.mvohm.quadmatrix.BigDecimalMatrix
-
Returns the last of the previously found matrix solutions, X, to a matrix equation of form AX = B, as a
Matrix. - getMatrixSolution() - Method in class com.mvohm.quadmatrix.DoubleMatrix
-
Returns the last of the previously found matrix solutions, X, to a matrix equation of form AX = B, as a
Matrix. - getMatrixSolution() - Method in class com.mvohm.quadmatrix.Matrix
-
Returns the last of the previously found matrix solutions, X, to a matrix equation of form AX = B, as a
Matrix. - getMatrixSolution() - Method in class com.mvohm.quadmatrix.QuadrupleMatrix
-
Returns the last of the previously found matrix solutions, X, to a matrix equation of form AX = B, as a
Matrix. - getNumberMatrixSolution() - Method in class com.mvohm.quadmatrix.BigDecimalMatrix
-
Returns the last of the previously found matrix solutions, X, to a matrix equation of form AX = B, as a two-dimentional array of Number.
- getNumberMatrixSolution() - Method in class com.mvohm.quadmatrix.DoubleMatrix
-
Returns the last of the previously found matrix solutions, X, to a matrix equation of form AX = B, as a two-dimentional array of Number.
- getNumberMatrixSolution() - Method in class com.mvohm.quadmatrix.Matrix
-
Returns the last of the previously found matrix solutions, X, to a matrix equation of form AX = B, as a two-dimentional array of Number.
- getNumberMatrixSolution() - Method in class com.mvohm.quadmatrix.QuadrupleMatrix
-
Returns the last of the previously found matrix solutions, X, to a matrix equation of form AX = B, as a two-dimentional array of Number.
- getPrecision() - Method in class com.mvohm.quadmatrix.BigDecimalMatrix
-
Returns the value of
precisionused by this instance ofBigDecimalMatrix. - getQuadrupleData() - Method in class com.mvohm.quadmatrix.BigDecimalMatrix
-
Returns a two-dimentional array of
Quadrupleinstances containing the values of the corresponding matrix elements, perhaps rounded. - getQuadrupleData() - Method in class com.mvohm.quadmatrix.DoubleMatrix
-
Returns a two-dimentional array of
Quadrupleinstances containing the values of the corresponding matrix elements, perhaps rounded. - getQuadrupleData() - Method in class com.mvohm.quadmatrix.Matrix
-
Returns a two-dimentional array of
Quadrupleinstances containing the values of the corresponding matrix elements, perhaps rounded. - getQuadrupleData() - Method in class com.mvohm.quadmatrix.QuadrupleMatrix
-
Returns a two-dimentional array of
Quadrupleinstances containing the values of the corresponding matrix elements, perhaps rounded. - getQuadrupleMatrixSolution() - Method in class com.mvohm.quadmatrix.BigDecimalMatrix
-
Returns the last of the previously found matrix solutions, X, to a matrix equation of form AX = B, as a two-dimentional array of Quadruples.
- getQuadrupleMatrixSolution() - Method in class com.mvohm.quadmatrix.DoubleMatrix
-
Returns the last of the previously found matrix solutions, X, to a matrix equation of form AX = B, as a two-dimentional array of Quadruples.
- getQuadrupleMatrixSolution() - Method in class com.mvohm.quadmatrix.Matrix
-
Returns the last of the previously found matrix solutions, X, to a matrix equation of form AX = B, as a two-dimentional array of Quadruples.
- getQuadrupleMatrixSolution() - Method in class com.mvohm.quadmatrix.QuadrupleMatrix
-
Returns the last of the previously found matrix solutions, X, to a matrix equation of form AX = B, as a two-dimentional array of Quadruples.
- getQuadrupleSolution() - Method in class com.mvohm.quadmatrix.BigDecimalMatrix
-
Returns the last of the previously found vector solutions, x, to a system of linear equations of form Ax = b, as an array of Quadruples.
- getQuadrupleSolution() - Method in class com.mvohm.quadmatrix.DoubleMatrix
-
Returns the last of the previously found vector solutions, x, to a system of linear equations of form Ax = b, as an array of Quadruples.
- getQuadrupleSolution() - Method in class com.mvohm.quadmatrix.Matrix
-
Returns the last of the previously found vector solutions, x, to a system of linear equations of form Ax = b, as an array of Quadruples.
- getQuadrupleSolution() - Method in class com.mvohm.quadmatrix.QuadrupleMatrix
-
Returns the last of the previously found vector solutions, x, to a system of linear equations of form Ax = b, as an array of Quadruples.
- getScaling() - Method in class com.mvohm.quadmatrix.BigDecimalMatrix
-
Returns the value of an internal flag that defines whether row scaling will be applied while solving a system by this instance of Matrix.
- getScaling() - Method in class com.mvohm.quadmatrix.DoubleMatrix
-
Returns the value of an internal flag that defines whether row scaling will be applied while solving a system by this instance of Matrix.
- getScaling() - Method in class com.mvohm.quadmatrix.Matrix
-
Returns the value of an internal flag that defines whether row scaling will be applied while solving a system by this instance of Matrix.
- getScaling() - Method in class com.mvohm.quadmatrix.QuadrupleMatrix
-
Returns the value of an internal flag that defines whether row scaling will be applied while solving a system by this instance of Matrix.
- getSize() - Method in class com.mvohm.quadmatrix.Matrix
-
Returns the size of the matrix,
mfor a matrixm x m - getSolution() - Method in class com.mvohm.quadmatrix.BigDecimalMatrix
-
Returns a copy of the last previously found vector solutions, x, to a system of linear equations of form Ax = b, as an array of Numbers.
- getSolution() - Method in class com.mvohm.quadmatrix.DoubleMatrix
-
Returns a copy of the last previously found vector solutions, x, to a system of linear equations of form Ax = b, as an array of Numbers.
- getSolution() - Method in class com.mvohm.quadmatrix.Matrix
-
Returns a copy of the last previously found vector solutions, x, to a system of linear equations of form Ax = b, as an array of Numbers.
- getSolution() - Method in class com.mvohm.quadmatrix.QuadrupleMatrix
-
Returns a copy of the last previously found vector solutions, x, to a system of linear equations of form Ax = b, as an array of Numbers.
H
- hashCode() - Method in class com.mvohm.quadmatrix.BigDecimalMatrix
-
Returns a hash code value for the
Matrix. - hashCode() - Method in class com.mvohm.quadmatrix.DoubleMatrix
-
Returns a hash code value for the
Matrix. - hashCode() - Method in class com.mvohm.quadmatrix.Matrix
-
Returns a hash code value for the
Matrix. - hashCode() - Method in class com.mvohm.quadmatrix.QuadrupleMatrix
-
Returns a hash code value for the
Matrix.
I
- inverse() - Method in class com.mvohm.quadmatrix.BigDecimalMatrix
-
Creates and returns a new Matrix instance containing the inversion of this instance.
- inverse() - Method in class com.mvohm.quadmatrix.DoubleMatrix
-
Creates and returns a new Matrix instance containing the inversion of this instance.
- inverse() - Method in class com.mvohm.quadmatrix.Matrix
-
Creates and returns a new Matrix instance containing the inversion of this instance.
- inverse() - Method in class com.mvohm.quadmatrix.QuadrupleMatrix
-
Creates and returns a new Matrix instance containing the inversion of this instance.
- inverseAccurately() - Method in class com.mvohm.quadmatrix.BigDecimalMatrix
-
Creates and returns a new Matrix instance containing the inversion of this instance.
- inverseAccurately() - Method in class com.mvohm.quadmatrix.DoubleMatrix
-
Creates and returns a new Matrix instance containing the inversion of this instance.
- inverseAccurately() - Method in class com.mvohm.quadmatrix.Matrix
-
Creates and returns a new Matrix instance containing the inversion of this instance.
- inverseAccurately() - Method in class com.mvohm.quadmatrix.QuadrupleMatrix
-
Creates and returns a new Matrix instance containing the inversion of this instance.
M
- Matrix - Class in com.mvohm.quadmatrix
-
A generic abstract class which defines the set of operations that all its subclasses must implement.
Instances of subclasses are capable of: solving systems of linear equations of the forms A * X = B and A * x = b, including versions with enhanced accuracy that use an iterative refinement of the solution (see Matrix.solve(Number[]), Matrix.solveAccurately(Number[]), Matrix.solve(Matrix) and alike); inversion (including a version with enhanced accuracy) and transposition of the matrix; multiplying this matrix by another matrix, by a vector, and by a scalar; addition and subtraction of a matrix; computation of the determinant. - multiply(double) - Method in class com.mvohm.quadmatrix.BigDecimalMatrix
-
Multiplies this instance of
Matrixby a scalar factorscalarpassed in as adoubleparameter, and creates and returns a new matrix containing the product. - multiply(double) - Method in class com.mvohm.quadmatrix.DoubleMatrix
-
Multiplies this instance of
Matrixby a scalar factorscalarpassed in as adoubleparameter, and creates and returns a new matrix containing the product. - multiply(double) - Method in class com.mvohm.quadmatrix.Matrix
-
Multiplies this instance of
Matrixby a scalar factorscalarpassed in as adoubleparameter, and creates and returns a new matrix containing the product. - multiply(double) - Method in class com.mvohm.quadmatrix.QuadrupleMatrix
-
Multiplies this instance of
Matrixby a scalar factorscalarpassed in as adoubleparameter, and creates and returns a new matrix containing the product. - multiply(double[]) - Method in class com.mvohm.quadmatrix.BigDecimalMatrix
-
Multiplies this instance of
Matrixby a vector passed in as an array ofdoubles, and returns an array of Number values containing the product. - multiply(double[]) - Method in class com.mvohm.quadmatrix.DoubleMatrix
-
Multiplies this instance of
Matrixby a vector passed in as an array ofdoubles, and returns an array of Number values containing the product. - multiply(double[]) - Method in class com.mvohm.quadmatrix.Matrix
-
Multiplies this instance of
Matrixby a vector passed in as an array ofdoubles, and returns an array of Number values containing the product. - multiply(double[]) - Method in class com.mvohm.quadmatrix.QuadrupleMatrix
-
Multiplies this instance of
Matrixby a vector passed in as an array ofdoubles, and returns an array of Number values containing the product. - multiply(double[][]) - Method in class com.mvohm.quadmatrix.BigDecimalMatrix
-
Multiplies this instance of
Matrixby thefactorpassed in as a two-dimentional double array, and creates and returns a new matrix containing the product. - multiply(double[][]) - Method in class com.mvohm.quadmatrix.DoubleMatrix
-
Multiplies this instance of
Matrixby thefactorpassed in as a two-dimentional double array, and creates and returns a new matrix containing the product. - multiply(double[][]) - Method in class com.mvohm.quadmatrix.Matrix
-
Multiplies this instance of
Matrixby thefactorpassed in as a two-dimentional double array, and creates and returns a new matrix containing the product. - multiply(double[][]) - Method in class com.mvohm.quadmatrix.QuadrupleMatrix
-
Multiplies this instance of
Matrixby thefactorpassed in as a two-dimentional double array, and creates and returns a new matrix containing the product. - multiply(Matrix) - Method in class com.mvohm.quadmatrix.BigDecimalMatrix
-
Multiplies this instance of
Matrixby the matrix passed in as thefactorargument, creates and returns a new matrix containing the product. - multiply(Matrix) - Method in class com.mvohm.quadmatrix.DoubleMatrix
-
Multiplies this instance of
Matrixby the matrix passed in as thefactorargument, creates and returns a new matrix containing the product. - multiply(Matrix) - Method in class com.mvohm.quadmatrix.Matrix
-
Multiplies this instance of
Matrixby the matrix passed in as thefactorargument, creates and returns a new matrix containing the product. - multiply(Matrix) - Method in class com.mvohm.quadmatrix.QuadrupleMatrix
-
Multiplies this instance of
Matrixby the matrix passed in as thefactorargument, creates and returns a new matrix containing the product. - multiply(Number) - Method in class com.mvohm.quadmatrix.BigDecimalMatrix
-
Multiplies this instance of
Matrixby a scalar factorscalarpassed in as a Number parameter, and creates and returns a new matrix containing the product. - multiply(Number) - Method in class com.mvohm.quadmatrix.DoubleMatrix
-
Multiplies this instance of
Matrixby a scalar factorscalarpassed in as a Number parameter, and creates and returns a new matrix containing the product. - multiply(Number) - Method in class com.mvohm.quadmatrix.Matrix
-
Multiplies this instance of
Matrixby a scalar factorscalarpassed in as a Number parameter, and creates and returns a new matrix containing the product. - multiply(Number) - Method in class com.mvohm.quadmatrix.QuadrupleMatrix
-
Multiplies this instance of
Matrixby a scalar factorscalarpassed in as a Number parameter, and creates and returns a new matrix containing the product. - multiply(Number[]) - Method in class com.mvohm.quadmatrix.BigDecimalMatrix
- multiply(Number[]) - Method in class com.mvohm.quadmatrix.DoubleMatrix
- multiply(Number[]) - Method in class com.mvohm.quadmatrix.Matrix
- multiply(Number[]) - Method in class com.mvohm.quadmatrix.QuadrupleMatrix
- multiply(Number[][]) - Method in class com.mvohm.quadmatrix.BigDecimalMatrix
-
Multiplies this instance of
Matrixby thefactorpassed in as a two-dimentional array ofNumbers, and creates and returns a new matrix containing the product. - multiply(Number[][]) - Method in class com.mvohm.quadmatrix.DoubleMatrix
-
Multiplies this instance of
Matrixby thefactorpassed in as a two-dimentional array ofNumbers, and creates and returns a new matrix containing the product. - multiply(Number[][]) - Method in class com.mvohm.quadmatrix.Matrix
-
Multiplies this instance of
Matrixby thefactorpassed in as a two-dimentional array ofNumbers, and creates and returns a new matrix containing the product. - multiply(Number[][]) - Method in class com.mvohm.quadmatrix.QuadrupleMatrix
-
Multiplies this instance of
Matrixby thefactorpassed in as a two-dimentional array ofNumbers, and creates and returns a new matrix containing the product.
N
- norm() - Method in class com.mvohm.quadmatrix.BigDecimalMatrix
-
Computes the row-based norm of the matrix, ║A║∞, and returns its value as a Number value.
- norm() - Method in class com.mvohm.quadmatrix.DoubleMatrix
-
Computes the row-based norm of the matrix, ║A║∞, and returns its value as a Number value.
- norm() - Method in class com.mvohm.quadmatrix.Matrix
-
Computes the row-based norm of the matrix, ║A║∞, and returns its value as a Number value.
- norm() - Method in class com.mvohm.quadmatrix.QuadrupleMatrix
-
Computes the row-based norm of the matrix, ║A║∞, and returns its value as a Number value.
- normAsBigDecimal() - Method in class com.mvohm.quadmatrix.BigDecimalMatrix
-
Computes the row-based norm of the matrix, ║A║∞, and returns its value as a BigDecimal value.
- normAsBigDecimal() - Method in class com.mvohm.quadmatrix.DoubleMatrix
-
Computes the row-based norm of the matrix, ║A║∞, and returns its value as a BigDecimal value.
- normAsBigDecimal() - Method in class com.mvohm.quadmatrix.Matrix
-
Computes the row-based norm of the matrix, ║A║∞, and returns its value as a BigDecimal value.
- normAsBigDecimal() - Method in class com.mvohm.quadmatrix.QuadrupleMatrix
-
Computes the row-based norm of the matrix, ║A║∞, and returns its value as a BigDecimal value.
- normAsDouble() - Method in class com.mvohm.quadmatrix.BigDecimalMatrix
-
Computes the row-based norm of the matrix, ║A║∞, and returns its value as a
doublevalue. - normAsDouble() - Method in class com.mvohm.quadmatrix.DoubleMatrix
-
Computes the row-based norm of the matrix, ║A║∞, and returns its value as a
doublevalue. - normAsDouble() - Method in class com.mvohm.quadmatrix.Matrix
-
Computes the row-based norm of the matrix, ║A║∞, and returns its value as a
doublevalue. - normAsDouble() - Method in class com.mvohm.quadmatrix.QuadrupleMatrix
-
Computes the row-based norm of the matrix, ║A║∞, and returns its value as a
doublevalue. - normAsQuadruple() - Method in class com.mvohm.quadmatrix.BigDecimalMatrix
-
Computes the row-based norm of the matrix, ║A║∞, and returns its value as a Quadruple value.
- normAsQuadruple() - Method in class com.mvohm.quadmatrix.DoubleMatrix
-
Computes the row-based norm of the matrix, ║A║∞, and returns its value as a Quadruple value.
- normAsQuadruple() - Method in class com.mvohm.quadmatrix.Matrix
-
Computes the row-based norm of the matrix, ║A║∞, and returns its value as a Quadruple value.
- normAsQuadruple() - Method in class com.mvohm.quadmatrix.QuadrupleMatrix
-
Computes the row-based norm of the matrix, ║A║∞, and returns its value as a Quadruple value.
Q
- QuadrupleMatrix - Class in com.mvohm.quadmatrix
- QuadrupleMatrix(double[][]) - Constructor for class com.mvohm.quadmatrix.QuadrupleMatrix
-
Creates a new
QuadrupleMatrixwhose inner data are obtained by converting the values of the givensourcearray into correspondingQuadruplevalues without precision loss, and the default value of theneedToScaleflag. - QuadrupleMatrix(double[][], boolean) - Constructor for class com.mvohm.quadmatrix.QuadrupleMatrix
-
Creates a new
QuadrupleMatrixwhose inner data are obtained by converting the values of the givensourcearray into correspondingQuadruplevalues without precision loss, and the specified value of theneedToScaleflag that is passed in as theneedToScaleargument. - QuadrupleMatrix(Matrix) - Constructor for class com.mvohm.quadmatrix.QuadrupleMatrix
-
Creates a new
QuadrupleMatrixwith a copy of the data of the givensourcematrix and the default value of theneedToScaleflag. - QuadrupleMatrix(Matrix, boolean) - Constructor for class com.mvohm.quadmatrix.QuadrupleMatrix
-
Creates a new
QuadrupleMatrixwith a copy of the data of the givensourcematrix and the value of theneedToScaleflag that is passed in as theneedToScaleargument. - QuadrupleMatrix(Number[][]) - Constructor for class com.mvohm.quadmatrix.QuadrupleMatrix
-
Creates a new
QuadrupleMatrixwith a copy of the data of the givensourcearray and the default value of theneedToScaleflag. - QuadrupleMatrix(Number[][], boolean) - Constructor for class com.mvohm.quadmatrix.QuadrupleMatrix
-
Creates a new
QuadrupleMatrixwith a copy of the data of the givensourcearray and the specified value of theneedToScaleflag.
S
- setDefaultPrecision(int) - Static method in class com.mvohm.quadmatrix.BigDecimalMatrix
-
Sets the value of the static
BigDecimalMatrix.defaultPrecisionvariable that is used to set corresponding instance fields when creating a new instances by constructors withoutprecisionparameter. - setDefaultScaling(boolean) - Static method in class com.mvohm.quadmatrix.BigDecimalMatrix
-
Sets the value of the static
BigDecimalMatrix.scaleByDefaultflag that is used to set corresponding instance flags when creating a new instances by constructors withoutneedToScaleparameter. - setDefaultScaling(boolean) - Static method in class com.mvohm.quadmatrix.DoubleMatrix
-
Sets the value of the static
DoubleMatrix.scaleByDefaultflag that is used to set corresponding instance flags when creating a new instances by constructors withoutneedToScaleparameter. - setDefaultScaling(boolean) - Static method in class com.mvohm.quadmatrix.QuadrupleMatrix
-
Sets the value of the static
scaleByDefaultflag that is used to set corresponding instance flags when creating a new instances by constructors withoutneedToScaleparameter. - solve(double[]) - Method in class com.mvohm.quadmatrix.BigDecimalMatrix
-
Solves a system of linear equations of form Ax = b and returns the found solution.
- solve(double[]) - Method in class com.mvohm.quadmatrix.DoubleMatrix
-
Solves a system of linear equations of form Ax = b and returns the found solution.
- solve(double[]) - Method in class com.mvohm.quadmatrix.Matrix
-
Solves a system of linear equations of form Ax = b and returns the found solution.
- solve(double[]) - Method in class com.mvohm.quadmatrix.QuadrupleMatrix
-
Solves a system of linear equations of form Ax = b and returns the found solution.
- solve(double[][]) - Method in class com.mvohm.quadmatrix.BigDecimalMatrix
-
Solves a matrix equation of form AX = B and returns the found solution.
- solve(double[][]) - Method in class com.mvohm.quadmatrix.DoubleMatrix
-
Solves a matrix equation of form AX = B and returns the found solution.
- solve(double[][]) - Method in class com.mvohm.quadmatrix.Matrix
-
Solves a matrix equation of form AX = B and returns the found solution.
- solve(double[][]) - Method in class com.mvohm.quadmatrix.QuadrupleMatrix
-
Solves a matrix equation of form AX = B and returns the found solution.
- solve(Matrix) - Method in class com.mvohm.quadmatrix.BigDecimalMatrix
-
Solves a matrix equation of form AX = B and returns the found solution.
- solve(Matrix) - Method in class com.mvohm.quadmatrix.DoubleMatrix
-
Solves a matrix equation of form AX = B and returns the found solution.
- solve(Matrix) - Method in class com.mvohm.quadmatrix.Matrix
-
Solves a matrix equation of form AX = B and returns the found solution.
- solve(Matrix) - Method in class com.mvohm.quadmatrix.QuadrupleMatrix
-
Solves a matrix equation of form AX = B and returns the found solution.
- solve(Number[]) - Method in class com.mvohm.quadmatrix.BigDecimalMatrix
-
Solves a system of linear equations of form Ax = b and returns the found solution.
- solve(Number[]) - Method in class com.mvohm.quadmatrix.DoubleMatrix
-
Solves a system of linear equations of form Ax = b and returns the found solution.
- solve(Number[]) - Method in class com.mvohm.quadmatrix.Matrix
-
Solves a system of linear equations of form Ax = b and returns the found solution.
- solve(Number[]) - Method in class com.mvohm.quadmatrix.QuadrupleMatrix
-
Solves a system of linear equations of form Ax = b and returns the found solution.
- solve(Number[][]) - Method in class com.mvohm.quadmatrix.BigDecimalMatrix
-
Solves a matrix equation of form AX = B and returns the found solution.
- solve(Number[][]) - Method in class com.mvohm.quadmatrix.DoubleMatrix
-
Solves a matrix equation of form AX = B and returns the found solution.
- solve(Number[][]) - Method in class com.mvohm.quadmatrix.Matrix
-
Solves a matrix equation of form AX = B and returns the found solution.
- solve(Number[][]) - Method in class com.mvohm.quadmatrix.QuadrupleMatrix
-
Solves a matrix equation of form AX = B and returns the found solution.
- solveAccurately(double[]) - Method in class com.mvohm.quadmatrix.BigDecimalMatrix
-
Solves a system of linear equations of form Ax = b with increased accuracy and returns the found solution.
- solveAccurately(double[]) - Method in class com.mvohm.quadmatrix.DoubleMatrix
-
Solves a system of linear equations of form Ax = b with increased accuracy and returns the found solution.
- solveAccurately(double[]) - Method in class com.mvohm.quadmatrix.Matrix
-
Solves a system of linear equations of form Ax = b with increased accuracy and returns the found solution.
- solveAccurately(double[]) - Method in class com.mvohm.quadmatrix.QuadrupleMatrix
-
Solves a system of linear equations of form Ax = b with increased accuracy and returns the found solution.
- solveAccurately(double[][]) - Method in class com.mvohm.quadmatrix.BigDecimalMatrix
-
Solves a matrix equation of form AX = B and returns the found solution.
- solveAccurately(double[][]) - Method in class com.mvohm.quadmatrix.DoubleMatrix
-
Solves a matrix equation of form AX = B and returns the found solution.
- solveAccurately(double[][]) - Method in class com.mvohm.quadmatrix.Matrix
-
Solves a matrix equation of form AX = B and returns the found solution.
- solveAccurately(double[][]) - Method in class com.mvohm.quadmatrix.QuadrupleMatrix
-
Solves a matrix equation of form AX = B and returns the found solution.
- solveAccurately(Matrix) - Method in class com.mvohm.quadmatrix.BigDecimalMatrix
-
Solves a matrix equation of form AX = B and returns the found solution.
- solveAccurately(Matrix) - Method in class com.mvohm.quadmatrix.DoubleMatrix
-
Solves a matrix equation of form AX = B and returns the found solution.
- solveAccurately(Matrix) - Method in class com.mvohm.quadmatrix.Matrix
-
Solves a matrix equation of form AX = B and returns the found solution.
- solveAccurately(Matrix) - Method in class com.mvohm.quadmatrix.QuadrupleMatrix
-
Solves a matrix equation of form AX = B and returns the found solution.
- solveAccurately(Number[]) - Method in class com.mvohm.quadmatrix.BigDecimalMatrix
-
Solves a system of linear equations of form Ax = b with increased accuracy and returns the found solution.
- solveAccurately(Number[]) - Method in class com.mvohm.quadmatrix.DoubleMatrix
-
Solves a system of linear equations of form Ax = b with increased accuracy and returns the found solution.
- solveAccurately(Number[]) - Method in class com.mvohm.quadmatrix.Matrix
-
Solves a system of linear equations of form Ax = b with increased accuracy and returns the found solution.
- solveAccurately(Number[]) - Method in class com.mvohm.quadmatrix.QuadrupleMatrix
-
Solves a system of linear equations of form Ax = b with increased accuracy and returns the found solution.
- solveAccurately(Number[][]) - Method in class com.mvohm.quadmatrix.BigDecimalMatrix
-
Solves a matrix equation of form AX = B and returns the found solution.
- solveAccurately(Number[][]) - Method in class com.mvohm.quadmatrix.DoubleMatrix
-
Solves a matrix equation of form AX = B and returns the found solution.
- solveAccurately(Number[][]) - Method in class com.mvohm.quadmatrix.Matrix
-
Solves a matrix equation of form AX = B and returns the found solution.
- solveAccurately(Number[][]) - Method in class com.mvohm.quadmatrix.QuadrupleMatrix
-
Solves a matrix equation of form AX = B and returns the found solution.
- solveSPD(double[]) - Method in class com.mvohm.quadmatrix.BigDecimalMatrix
-
Solves a system of linear equations of form Ax = b for a symmetric positively-defined matrix of coefficients and returns the found solution.
- solveSPD(double[]) - Method in class com.mvohm.quadmatrix.DoubleMatrix
-
Solves a system of linear equations of form Ax = b for a symmetric positively-defined matrix of coefficients and returns the found solution.
- solveSPD(double[]) - Method in class com.mvohm.quadmatrix.Matrix
-
Solves a system of linear equations of form Ax = b for a symmetric positively-defined matrix of coefficients and returns the found solution.
- solveSPD(double[]) - Method in class com.mvohm.quadmatrix.QuadrupleMatrix
-
Solves a system of linear equations of form Ax = b for a symmetric positively-defined matrix of coefficients and returns the found solution.
- solveSPD(Number[]) - Method in class com.mvohm.quadmatrix.BigDecimalMatrix
-
Solves a system of linear equations of form Ax = b for a symmetric positively-defined matrix of coefficients and returns the found solution.
- solveSPD(Number[]) - Method in class com.mvohm.quadmatrix.DoubleMatrix
-
Solves a system of linear equations of form Ax = b for a symmetric positively-defined matrix of coefficients and returns the found solution.
- solveSPD(Number[]) - Method in class com.mvohm.quadmatrix.Matrix
-
Solves a system of linear equations of form Ax = b for a symmetric positively-defined matrix of coefficients and returns the found solution.
- solveSPD(Number[]) - Method in class com.mvohm.quadmatrix.QuadrupleMatrix
-
Solves a system of linear equations of form Ax = b for a symmetric positively-defined matrix of coefficients and returns the found solution.
- solveSPDAccurately(double[]) - Method in class com.mvohm.quadmatrix.BigDecimalMatrix
-
Solves a system of linear equations of form Ax = b for a symmetric positively-defined matrix of coefficients, using an iterative refinement algorithm to achieve higher solution accuracy, and returns the found solution.
- solveSPDAccurately(double[]) - Method in class com.mvohm.quadmatrix.DoubleMatrix
-
Solves a system of linear equations of form Ax = b for a symmetric positively-defined matrix of coefficients, using an iterative refinement algorithm to achieve higher solution accuracy, and returns the found solution.
- solveSPDAccurately(double[]) - Method in class com.mvohm.quadmatrix.Matrix
-
Solves a system of linear equations of form Ax = b for a symmetric positively-defined matrix of coefficients, using an iterative refinement algorithm to achieve higher solution accuracy, and returns the found solution.
- solveSPDAccurately(double[]) - Method in class com.mvohm.quadmatrix.QuadrupleMatrix
-
Solves a system of linear equations of form Ax = b for a symmetric positively-defined matrix of coefficients, using an iterative refinement algorithm to achieve higher solution accuracy, and returns the found solution.
- solveSPDAccurately(Number[]) - Method in class com.mvohm.quadmatrix.BigDecimalMatrix
-
Solves a system of linear equations of form Ax = b for a symmetric positively-defined matrix of coefficients, using an iterative refinement algorithm to achieve higher solution accuracy, and returns the found solution.
- solveSPDAccurately(Number[]) - Method in class com.mvohm.quadmatrix.DoubleMatrix
-
Solves a system of linear equations of form Ax = b for a symmetric positively-defined matrix of coefficients, using an iterative refinement algorithm to achieve higher solution accuracy, and returns the found solution.
- solveSPDAccurately(Number[]) - Method in class com.mvohm.quadmatrix.Matrix
-
Solves a system of linear equations of form Ax = b for a symmetric positively-defined matrix of coefficients, using an iterative refinement algorithm to achieve higher solution accuracy, and returns the found solution.
- solveSPDAccurately(Number[]) - Method in class com.mvohm.quadmatrix.QuadrupleMatrix
-
Solves a system of linear equations of form Ax = b for a symmetric positively-defined matrix of coefficients, using an iterative refinement algorithm to achieve higher solution accuracy, and returns the found solution.
- subtract(double[][]) - Method in class com.mvohm.quadmatrix.BigDecimalMatrix
-
Subtracts the given
matrixBpassed in as a two-dimentional array ofdoubles from this matrix and returns the difference. - subtract(double[][]) - Method in class com.mvohm.quadmatrix.DoubleMatrix
-
Subtracts the given
matrixBpassed in as a two-dimentional array ofdoubles from this matrix and returns the difference. - subtract(double[][]) - Method in class com.mvohm.quadmatrix.Matrix
-
Subtracts the given
matrixBpassed in as a two-dimentional array ofdoubles from this matrix and returns the difference. - subtract(double[][]) - Method in class com.mvohm.quadmatrix.QuadrupleMatrix
-
Subtracts the given
matrixBpassed in as a two-dimentional array ofdoubles from this matrix and returns the difference. - subtract(Matrix) - Method in class com.mvohm.quadmatrix.BigDecimalMatrix
-
Subtracts the given
matrixBfrom this matrix and returns the difference. - subtract(Matrix) - Method in class com.mvohm.quadmatrix.DoubleMatrix
-
Subtracts the given
matrixBfrom this matrix and returns the difference. - subtract(Matrix) - Method in class com.mvohm.quadmatrix.Matrix
-
Subtracts the given
matrixBfrom this matrix and returns the difference. - subtract(Matrix) - Method in class com.mvohm.quadmatrix.QuadrupleMatrix
-
Subtracts the given
matrixBfrom this matrix and returns the difference. - subtract(Number[][]) - Method in class com.mvohm.quadmatrix.BigDecimalMatrix
-
Subtracts the given
matrixBpassed in as a two-dimentional array of Number from this matrix and returns the difference. - subtract(Number[][]) - Method in class com.mvohm.quadmatrix.DoubleMatrix
-
Subtracts the given
matrixBpassed in as a two-dimentional array of Number from this matrix and returns the difference. - subtract(Number[][]) - Method in class com.mvohm.quadmatrix.Matrix
-
Subtracts the given
matrixBpassed in as a two-dimentional array of Number from this matrix and returns the difference. - subtract(Number[][]) - Method in class com.mvohm.quadmatrix.QuadrupleMatrix
-
Subtracts the given
matrixBpassed in as a two-dimentional array of Number from this matrix and returns the difference.
T
- transpose() - Method in class com.mvohm.quadmatrix.BigDecimalMatrix
-
Creates and returns a new Matrix instance containing the transposition of this instance.
- transpose() - Method in class com.mvohm.quadmatrix.DoubleMatrix
-
Creates and returns a new Matrix instance containing the transposition of this instance.
- transpose() - Method in class com.mvohm.quadmatrix.Matrix
-
Creates and returns a new Matrix instance containing the transposition of this instance.
- transpose() - Method in class com.mvohm.quadmatrix.QuadrupleMatrix
-
Creates and returns a new Matrix instance containing the transposition of this instance.
U
- unity() - Method in class com.mvohm.quadmatrix.BigDecimalMatrix
-
Creates and returns a new Matrix instance containing a unity matrix of the same size as the source matrix.
- unity() - Method in class com.mvohm.quadmatrix.DoubleMatrix
-
Creates and returns a new Matrix instance containing a unity matrix of the same size as the source matrix.
- unity() - Method in class com.mvohm.quadmatrix.Matrix
-
Creates and returns a new Matrix instance containing a unity matrix of the same size as the source matrix.
- unity() - Method in class com.mvohm.quadmatrix.QuadrupleMatrix
-
Creates and returns a new Matrix instance containing a unity matrix of the same size as the source matrix.
All Classes and Interfaces|All Packages