Package | Description |
---|---|
org.ojalgo.matrix |
Modifier and Type | Interface and Description |
---|---|
static interface |
BasicMatrix.LogicalBuilder<N extends Number,I extends BasicMatrix>
Deprecated.
|
static interface |
BasicMatrix.PhysicalBuilder<N extends Number,I extends BasicMatrix>
Deprecated.
|
class |
MatrixFactory<N extends Number,I extends BasicMatrix>
MatrixFactory creates instances of classes that implement the BasicMatrix
interface and have a constructor that takes a MatrixStore as input.
|
Modifier and Type | Class and Description |
---|---|
class |
ComplexMatrix
ComplexMatrix
|
class |
PrimitiveMatrix
PrimitiveMatrix
|
class |
QuaternionMatrix
QuaternionMatrix
|
class |
RationalMatrix
RationalMatrix
|
Modifier and Type | Method and Description |
---|---|
BasicMatrix |
BasicMatrix.add(int row,
int col,
Access2D<?> addend)
|
BasicMatrix |
BasicMatrix.divideElements(Access2D<?> aMtrx)
|
BasicMatrix |
BasicMatrix.getColumnsRange(int first,
int limit)
|
BasicMatrix |
BasicMatrix.getRowsRange(int first,
int kimit)
|
BasicMatrix |
BasicMatrix.invert()
Deprecated.
About inverting matrices:
|
BasicMatrix |
BasicMatrix.mergeColumns(Access2D<?> belowRows)
|
BasicMatrix |
BasicMatrix.mergeRows(Access2D<?> rightColumns)
|
BasicMatrix |
BasicMatrix.modify(UnaryFunction<? extends Number> aFunc)
|
BasicMatrix |
BasicMatrix.multiplyElements(Access2D<?> aMtrx)
|
default BasicMatrix |
BasicMatrix.selectColumns(int... someCols)
|
default BasicMatrix |
BasicMatrix.selectRows(int... someRows)
|
BasicMatrix |
BasicMatrix.solve(Access2D<?> aRHS)
Deprecated.
This method solves a system of linear equations: [this][X]=[aRHS].
|
BasicMatrix |
BasicMatrix.transpose()
Deprecated.
Transposes this matrix.
|
Modifier and Type | Method and Description |
---|---|
BasicMatrix.PhysicalBuilder<? extends Number,? extends BasicMatrix> |
BasicMatrix.copy()
Deprecated.
|
BasicMatrix.LogicalBuilder<? extends Number,? extends BasicMatrix> |
BasicMatrix.logical()
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
static double |
BasicMatrix.calculateFrobeniusNorm(BasicMatrix matrix)
Deprecated.
The Frobenius norm is the square root of the sum of the squares of each element, or the square root of
the sum of the square of the singular values.
|
static double |
BasicMatrix.calculateInfinityNorm(BasicMatrix matrix)
Deprecated.
|
static double |
BasicMatrix.calculateOneNorm(BasicMatrix matrix)
Deprecated.
|
static <N extends Number> |
MatrixUtils.hashCode(BasicMatrix matrix) |
BasicMatrix.LogicalBuilder<N,I> |
BasicMatrix.LogicalBuilder.superimpose(BasicMatrix matrix) |
BasicMatrix.LogicalBuilder<N,I> |
BasicMatrix.LogicalBuilder.superimpose(int row,
int col,
BasicMatrix matrix) |
static Access2D<BigDecimal> |
MatrixUtils.wrapBigAccess2D(BasicMatrix matrix) |
static Access2D<ComplexNumber> |
MatrixUtils.wrapComplexAccess2D(BasicMatrix matrix) |
static Access2D<Double> |
MatrixUtils.wrapPrimitiveAccess2D(BasicMatrix matrix) |
Copyright © 2018 Optimatika. All rights reserved.