Uses of Interface
org.ujmp.core.doublematrix.DenseDoubleMatrix2D
-
-
Uses of DenseDoubleMatrix2D in org.ujmp.colt
Classes in org.ujmp.colt that implement DenseDoubleMatrix2D Modifier and Type Class Description class
ColtDenseDoubleMatrix2D
class
ColtSparseDoubleMatrix2D
-
Uses of DenseDoubleMatrix2D in org.ujmp.commonsmath
Classes in org.ujmp.commonsmath that implement DenseDoubleMatrix2D Modifier and Type Class Description class
AbstractCommonsMathDenseDoubleMatrix2D
class
CommonsMathArrayDenseDoubleMatrix2D
class
CommonsMathBlockDenseDoubleMatrix2D
Methods in org.ujmp.commonsmath that return DenseDoubleMatrix2D Modifier and Type Method Description DenseDoubleMatrix2D
CommonsMathDenseDoubleMatrix2DFactory. dense(org.apache.commons.math3.linear.Array2DRowRealMatrix matrix)
DenseDoubleMatrix2D
CommonsMathDenseDoubleMatrix2DFactory. dense(org.apache.commons.math3.linear.BlockRealMatrix matrix)
-
Uses of DenseDoubleMatrix2D in org.ujmp.core.calculation
Methods in org.ujmp.core.calculation with parameters of type DenseDoubleMatrix2D Modifier and Type Method Description void
DivideMatrixDenseDoubleMatrix2D. calc(DenseDoubleMatrix2D source1, DenseDoubleMatrix2D source2, DenseDoubleMatrix2D target)
void
DivideScalarDenseDoubleMatrix2D. calc(DenseDoubleMatrix2D source, double divisor, DenseDoubleMatrix2D target)
void
DivideScalarDenseDoubleMatrix2D. calc(DenseDoubleMatrix2D source, java.math.BigDecimal divisor, DenseDoubleMatrix2D target)
void
MinusMatrixDenseDoubleMatrix2D. calc(DenseDoubleMatrix2D source1, DenseDoubleMatrix2D source2, DenseDoubleMatrix2D target)
void
MinusScalarDenseDoubleMatrix2D. calc(DenseDoubleMatrix2D source, double value, DenseDoubleMatrix2D target)
void
MinusScalarDenseDoubleMatrix2D. calc(DenseDoubleMatrix2D source, java.math.BigDecimal value, DenseDoubleMatrix2D target)
void
MtimesDenseDoubleMatrix2D. calc(DenseDoubleMatrix2D source1, DenseDoubleMatrix2D source2, DenseDoubleMatrix2D target)
void
PlusMatrixDenseDoubleMatrix2D. calc(DenseDoubleMatrix2D source1, DenseDoubleMatrix2D source2, DenseDoubleMatrix2D target)
void
PlusScalarDenseDoubleMatrix2D. calc(DenseDoubleMatrix2D source, double value, DenseDoubleMatrix2D target)
void
PlusScalarDenseDoubleMatrix2D. calc(DenseDoubleMatrix2D source, java.math.BigDecimal value, DenseDoubleMatrix2D target)
void
TimesMatrixDenseDoubleMatrix2D. calc(DenseDoubleMatrix2D source1, DenseDoubleMatrix2D source2, DenseDoubleMatrix2D target)
void
TimesScalarDenseDoubleMatrix2D. calc(DenseDoubleMatrix2D source, double factor, DenseDoubleMatrix2D target)
void
TimesScalarDenseDoubleMatrix2D. calc(DenseDoubleMatrix2D source, java.math.BigDecimal factor, DenseDoubleMatrix2D target)
void
TransposeDenseDoubleMatrix2D. calc(DenseDoubleMatrix2D source, DenseDoubleMatrix2D target)
private void
MtimesDenseDoubleMatrix2D. calcBlockMatrixMultiThreaded(DenseDoubleMatrix2D source1, DenseDoubleMatrix2D source2, DenseDoubleMatrix2D target)
private void
MtimesDenseDoubleMatrix2D. calcDenseDoubleMatrix2DMultiThreaded(DenseDoubleMatrix2D A, DenseDoubleMatrix2D B, DenseDoubleMatrix2D C)
private void
MtimesDenseDoubleMatrix2D. calcDenseDoubleMatrix2DSingleThreaded(DenseDoubleMatrix2D A, DenseDoubleMatrix2D B, DenseDoubleMatrix2D C)
-
Uses of DenseDoubleMatrix2D in org.ujmp.core.doublematrix
Subinterfaces of DenseDoubleMatrix2D in org.ujmp.core.doublematrix Modifier and Type Interface Description interface
DoubleMatrix
Fields in org.ujmp.core.doublematrix with type parameters of type DenseDoubleMatrix2D Modifier and Type Field Description static DenseDoubleMatrix2DFactory<? extends DenseDoubleMatrix2D>
DenseDoubleMatrix2D. Factory
-
Uses of DenseDoubleMatrix2D in org.ujmp.core.doublematrix.calculation.general.decomposition
Methods in org.ujmp.core.doublematrix.calculation.general.decomposition that return DenseDoubleMatrix2D Modifier and Type Method Description DenseDoubleMatrix2D
Ginv. calcNew()
DenseDoubleMatrix2D
Ginv. calcOrig()
DenseDoubleMatrix2D
Eig.EigMatrix. getD()
Return the block diagonal eigenvalue matrixDenseDoubleMatrix2D
QR.QRMatrix. getH()
Return the Householder vectorsDenseDoubleMatrix2D
Chol.CholMatrix. getL()
Return triangular factor.DenseDoubleMatrix2D
LU.LUMatrix. getL()
Return lower triangular factorDenseDoubleMatrix2D
QR.QRMatrix. getQ()
Generate and return the (economy-sized) orthogonal factorDenseDoubleMatrix2D
QR.QRMatrix. getR()
Return the upper triangular factorDenseDoubleMatrix2D
SVD.SVDMatrix. getreciprocalS()
Return the diagonal matrix of the reciprocals of the singular valuesDenseDoubleMatrix2D
SVDTask.SVDMatrix. getreciprocalS()
Return the diagonal matrix of the reciprocals of the singular valuesDenseDoubleMatrix2D
SVD.SVDMatrix. getS()
Return the diagonal matrix of singular valuesDenseDoubleMatrix2D
SVDTask.SVDMatrix. getS()
Return the diagonal matrix of singular valuesDenseDoubleMatrix2D
LU.LUMatrix. getU()
Return upper triangular factorDenseDoubleMatrix2D
SVD.SVDMatrix. getU()
Return the left singular vectorsDenseDoubleMatrix2D
SVDTask.SVDMatrix. getU()
Return the left singular vectorsDenseDoubleMatrix2D
Eig.EigMatrix. getV()
Return the eigenvector matrixDenseDoubleMatrix2D
SVD.SVDMatrix. getV()
Return the right singular vectorsDenseDoubleMatrix2D
SVDTask.SVDMatrix. getV()
Return the right singular vectorsstatic DenseDoubleMatrix2D
Ginv. inverse(double[][] matrix)
Same asGinv.inverse(org.ujmp.core.Matrix)
but optimized for 2D double arraysstatic DenseDoubleMatrix2D
Ginv. inverse(DenseDoubleMatrix2D matrix)
Same asGinv.inverse(org.ujmp.core.Matrix)
but optimized for 2D dense double matricesstatic DenseDoubleMatrix2D
Ginv. inverse(Matrix matrix)
Matrix inversion is the reason this Class exists - this method creates a generalized matrix inverse of the current matrix.DenseDoubleMatrix2D
SVD.SVDMatrix. inverse(boolean omit)
Return the Moore-Penrose (generalized) inverse Slightly modified version of Kim van der Linde's codeDenseDoubleMatrix2D
SVDTask.SVDMatrix. inverse(boolean omit)
Return the Moore-Penrose (generalized) inverse Slightly modified version of Kim van der Linde's codeDenseDoubleMatrix2D
Chol.CholMatrix. solve(Matrix B)
Solve A*X = BDenseDoubleMatrix2D
LU.LUMatrix. solve(Matrix B)
Solve A*X = Bstatic DenseDoubleMatrix2D
Ginv. times(DenseDoubleMatrix2D matrix1, DenseDoubleMatrix2D matrix2, long timesInner)
This routine performs the matrix multiplication.Methods in org.ujmp.core.doublematrix.calculation.general.decomposition with parameters of type DenseDoubleMatrix2D Modifier and Type Method Description static void
Ginv. addColTimes(DenseDoubleMatrix2D matrix, long diag, long fromRow, long col, double factor)
Add a factor times one column to another columnstatic void
Ginv. addRowTimes(DenseDoubleMatrix2D matrix, long diag, long fromCol, long row, double factor)
Add a factor times one row to another rowstatic void
Ginv. divideRowBy(DenseDoubleMatrix2D matrix, long aRow, long fromCol, double value)
Divide the row from this column position by this valuestatic DenseDoubleMatrix2D
Ginv. inverse(DenseDoubleMatrix2D matrix)
Same asGinv.inverse(org.ujmp.core.Matrix)
but optimized for 2D dense double matricesstatic void
Ginv. swapCols(DenseDoubleMatrix2D matrix, long col1, long col2)
Swap components in the two columns.static void
Ginv. swapPivot(DenseDoubleMatrix2D source, long diag, DenseDoubleMatrix2D s, DenseDoubleMatrix2D t)
Swap the matrices so that the largest value is on the pivotstatic void
Ginv. swapRows(DenseDoubleMatrix2D matrix, long row1, long row2)
Swap components in the two rows.static DenseDoubleMatrix2D
Ginv. times(DenseDoubleMatrix2D matrix1, DenseDoubleMatrix2D matrix2, long timesInner)
This routine performs the matrix multiplication. -
Uses of DenseDoubleMatrix2D in org.ujmp.core.doublematrix.factory
Classes in org.ujmp.core.doublematrix.factory with type parameters of type DenseDoubleMatrix2D Modifier and Type Class Description class
AbstractDenseDoubleMatrix2DFactory<T extends DenseDoubleMatrix2D>
interface
DenseDoubleMatrix2DFactory<T extends DenseDoubleMatrix2D>
Methods in org.ujmp.core.doublematrix.factory that return DenseDoubleMatrix2D Modifier and Type Method Description DenseDoubleMatrix2D
DefaultDenseDoubleMatrix2DFactory. zeros(long rows, long columns)
-
Uses of DenseDoubleMatrix2D in org.ujmp.core.doublematrix.impl
Classes in org.ujmp.core.doublematrix.impl that implement DenseDoubleMatrix2D Modifier and Type Class Description class
ArrayDenseDoubleMatrix2D
class
BlockDenseDoubleMatrix2D
A dense 2D matrix with square block layout.class
DefaultDenseDoubleMatrix2D
class
DefaultDenseDoubleMatrixMultiD
class
DefaultSparseRowDoubleMatrix2D
class
DenseFileMatrix
class
DoubleCalculationMatrix
class
IndexedSparseDoubleMatrix2D
class
MortonDenseDoubleMartrix2D
class
SparseFeatureVector
class
WaveMatrix
-
Uses of DenseDoubleMatrix2D in org.ujmp.core.doublematrix.stub
Classes in org.ujmp.core.doublematrix.stub that implement DenseDoubleMatrix2D Modifier and Type Class Description class
AbstractDenseDoubleMatrix2D
class
AbstractDenseDoubleMatrixMultiD
class
AbstractDoubleMatrix
class
AbstractDoubleMatrix2D
class
AbstractDoubleMatrixMultiD
class
AbstractSparseDoubleMatrix
class
AbstractSparseDoubleMatrix2D
-
Uses of DenseDoubleMatrix2D in org.ujmp.core.matrix.factory
Methods in org.ujmp.core.matrix.factory that return DenseDoubleMatrix2D Modifier and Type Method Description DenseDoubleMatrix2D
AbstractMatrixFactory. createVectorForClass(int classID, int classCount)
DenseDoubleMatrix2D
AbstractMatrixFactory. importFromArray(double[]... values)
DenseDoubleMatrix2D
AbstractMatrixFactory. linkToArray(double... values)
DenseDoubleMatrix2D
AbstractMatrixFactory. linkToArray(double[]... values)
DenseDoubleMatrix2D
AbstractMatrixFactory. linkToValue(double value)
DenseDoubleMatrix2D
AbstractMatrixFactory. linkToValue(java.lang.Double value)
DenseDoubleMatrix2D
AbstractMatrixFactory. rosserMatrix()
DenseDoubleMatrix2D
AbstractMatrixFactory. sequence(double start, double end)
DenseDoubleMatrix2D
AbstractMatrixFactory. sequence(double start, double end, double stepsize)
DenseDoubleMatrix2D
AbstractMatrixFactory. sunSpotDataset()
-
Uses of DenseDoubleMatrix2D in org.ujmp.core.text
Methods in org.ujmp.core.text that return DenseDoubleMatrix2D Modifier and Type Method Description static DenseDoubleMatrix2D
TextUtil. getCharacterFrequencies(java.lang.String s, char... validCharacters)
-
Uses of DenseDoubleMatrix2D in org.ujmp.core.timeseries
Classes in org.ujmp.core.timeseries that implement DenseDoubleMatrix2D Modifier and Type Class Description class
TimeSeriesMatrix
-
Uses of DenseDoubleMatrix2D in org.ujmp.core.treematrix
Classes in org.ujmp.core.treematrix that implement DenseDoubleMatrix2D Modifier and Type Class Description class
AbstractTreeMatrix<T>
class
DefaultTreeMatrix<T>
class
ObjectTreeMatrix
-
Uses of DenseDoubleMatrix2D in org.ujmp.core.util
Classes in org.ujmp.core.util that implement DenseDoubleMatrix2D Modifier and Type Class Description class
DefaultSparseDoubleVector1D
Methods in org.ujmp.core.util that return DenseDoubleMatrix2D Modifier and Type Method Description static DenseDoubleMatrix2D
BLAS. mtimes(DefaultDenseDoubleMatrix2D A, DefaultDenseDoubleMatrix2D B)
-
Uses of DenseDoubleMatrix2D in org.ujmp.core.util.io
Classes in org.ujmp.core.util.io that implement DenseDoubleMatrix2D Modifier and Type Class Description class
ClientMatrix
-
Uses of DenseDoubleMatrix2D in org.ujmp.core.util.matrices
Classes in org.ujmp.core.util.matrices that implement DenseDoubleMatrix2D Modifier and Type Class Description class
MandelbrotMatrix
-
Uses of DenseDoubleMatrix2D in org.ujmp.jama
Classes in org.ujmp.jama that implement DenseDoubleMatrix2D Modifier and Type Class Description class
JamaDenseDoubleMatrix2D
-
Uses of DenseDoubleMatrix2D in org.ujmp.jblas
Classes in org.ujmp.jblas that implement DenseDoubleMatrix2D Modifier and Type Class Description class
JBlasDenseDoubleMatrix2D
-
Uses of DenseDoubleMatrix2D in org.ujmp.la4j
Classes in org.ujmp.la4j that implement DenseDoubleMatrix2D Modifier and Type Class Description class
La4JDenseDoubleMatrix2D
-
Uses of DenseDoubleMatrix2D in org.ujmp.vecmath
Classes in org.ujmp.vecmath that implement DenseDoubleMatrix2D Modifier and Type Class Description class
VecMathDenseDoubleMatrix2D
Methods in org.ujmp.vecmath that return DenseDoubleMatrix2D Modifier and Type Method Description DenseDoubleMatrix2D
VecMathDenseDoubleMatrix2D. inv()
-