Uses of Interface
org.ojalgo.matrix.store.MatrixStore
Packages that use MatrixStore
Package
Description
-
Uses of MatrixStore in org.ojalgo.ann
Methods in org.ojalgo.ann that return MatrixStore -
Uses of MatrixStore in org.ojalgo.data.image
Classes in org.ojalgo.data.image that implement MatrixStoreMethods in org.ojalgo.data.image with parameters of type MatrixStoreModifier and TypeMethodDescriptionstatic ImageDataImageData.fromFrequencyDomain(MatrixStore<ComplexNumber> transformed) Creates a new image, transforming the input (back) from the frequency domain to the spatial domain using the inverse discrete Fourier transform. -
Uses of MatrixStore in org.ojalgo.data.transform
Methods in org.ojalgo.data.transform that return MatrixStoreModifier and TypeMethodDescriptionstatic MatrixStore<ComplexNumber> This method computes the discrete Fourier transform (DFT) of a sequence of real numbers.final MatrixStore<ComplexNumber> DiscreteFourierTransform.inverse(Access1D<ComplexNumber> input) static MatrixStore<ComplexNumber> DiscreteFourierTransform.inverse2D(MatrixStore<?> input) static MatrixStore<ComplexNumber> DiscreteFourierTransform.sample(DoubleUnaryOperator function, PrimitiveFunction.SampleDomain sampleDomain) Sample, and transform, a function using the Discrete Fourier Transform.static MatrixStore<ComplexNumber> DiscreteFourierTransform.sample(PeriodicFunction function, int nbSamples) static <N extends Comparable<N>>
MatrixStore<N> DiscreteFourierTransform.shift(MatrixStore<N> matrix) There is a symmetry in the DFT matrix.DiscreteFourierTransform.transform(double... input) final MatrixStore<ComplexNumber> static MatrixStore<ComplexNumber> DiscreteFourierTransform.transform2D(MatrixStore<?> input) Perform a 2D Discrete Fourier Transform on the input matrix.Methods in org.ojalgo.data.transform with parameters of type MatrixStoreModifier and TypeMethodDescriptionstatic MatrixStore<ComplexNumber> DiscreteFourierTransform.inverse2D(MatrixStore<?> input) static <N extends Comparable<N>>
MatrixStore<N> DiscreteFourierTransform.shift(MatrixStore<N> matrix) There is a symmetry in the DFT matrix.static MatrixStore<ComplexNumber> DiscreteFourierTransform.transform2D(MatrixStore<?> input) Perform a 2D Discrete Fourier Transform on the input matrix.static voidDiscreteFourierTransform.transform2D(MatrixStore<?> input, DiscreteFourierTransform.Directive directive, TransformableRegion<ComplexNumber> output) -
Uses of MatrixStore in org.ojalgo.function.multiary
Methods in org.ojalgo.function.multiary that return MatrixStoreModifier and TypeMethodDescriptionAffineFunction.getGradient(Access1D<N> point) ConstantFunction.getGradient(Access1D<N> point) FirstOrderApproximation.getGradient(Access1D<N> point) LinearFunction.getGradient(Access1D<N> point) MultiaryFunction.TwiceDifferentiable.getGradient(Access1D<N> point) The gradient of a scalar field is a vector field that points in the direction of the greatest rate of increase of the scalar field, and whose magnitude is that rate of increase.PureQuadraticFunction.getGradient(Access1D<N> point) QuadraticFunction.getGradient(Access1D<N> point) SecondOrderApproximation.getGradient(Access1D<N> point) AffineFunction.getHessian(Access1D<N> point) ConstantFunction.getHessian(Access1D<N> point) FirstOrderApproximation.getHessian(Access1D<N> point) LinearFunction.getHessian(Access1D<N> point) MultiaryFunction.TwiceDifferentiable.getHessian(Access1D<N> point) The Hessian matrix or Hessian is a square matrix of second-order partial derivatives of a function.PureQuadraticFunction.getHessian(Access1D<N> point) QuadraticFunction.getHessian(Access1D<N> point) SecondOrderApproximation.getHessian(Access1D<N> point) AffineFunction.getLinearFactors(boolean negated) ConstantFunction.getLinearFactors(boolean negated) LinearFunction.getLinearFactors(boolean negated) MultiaryFunction.TwiceDifferentiable.getLinearFactors(boolean negated) PureQuadraticFunction.getLinearFactors(boolean negated) QuadraticFunction.getLinearFactors(boolean negated) -
Uses of MatrixStore in org.ojalgo.matrix.decomposition
Subinterfaces of MatrixStore in org.ojalgo.matrix.decompositionModifier and TypeInterfaceDescriptioninterfaceDecompositionStore<N extends Comparable<N>>Only classes that will act as a delegate to a MatrixDecomposition implementation from this package should implement this interface.Methods in org.ojalgo.matrix.decomposition that return MatrixStoreModifier and TypeMethodDescriptionSingularValue.getCovariance()Bidiagonal.getD()Eigenvalue.getD()The only requirements on [D] are that it should contain the eigenvalues and that [A][V] = [V][D].LDL.getD()SingularValue.getD()Deprecated.SparseQDLDL.getD()Tridiagonal.getD()default MatrixStore<ComplexNumber> Eigenvalue.getEigenvectors()Hessenberg.getH()default MatrixStore<N> MatrixDecomposition.Solver.getInverse()The output must be a "right inverse" and a "generalised inverse".MatrixDecomposition.Solver.getInverse(PhysicalStore<N> preallocated) Implementing this method is optional.SparseQDLDL.getInverse(PhysicalStore<Double> preallocated) default MatrixStore<N> Cholesky.getL()Must implement eitherCholesky.getL()orCholesky.getR().default MatrixStore<N> LDL.getL()Must implement eitherLDL.getL()orLDL.getR().LU.getL()SparseQDLDL.getL()Bidiagonal.getLQ()Hessenberg.getQ()QR.getQ()Tridiagonal.getQ()default MatrixStore<N> Cholesky.getR()Must implement eitherCholesky.getL()orCholesky.getR().default MatrixStore<N> LDL.getR()Must implement eitherLDL.getL()orLDL.getR().QR.getR()Bidiagonal.getRQ()SingularValue.getS()default MatrixStore<N> LU.getSolution(Access2D.Collectable<N, ? super PhysicalStore<N>> rhs) default MatrixStore<N> MatrixDecomposition.Solver.getSolution(Access2D.Collectable<N, ? super PhysicalStore<N>> rhs) [A][X]=[B] or [this][return]=[rhs]MatrixDecomposition.Solver.getSolution(Access2D.Collectable<N, ? super PhysicalStore<N>> rhs, PhysicalStore<N> preallocated) Implementing this method is optional.SparseQDLDL.getSolution(Access2D.Collectable<Double, ? super PhysicalStore<Double>> rhs, PhysicalStore<Double> preallocated) LU.getU()http://en.wikipedia.org/wiki/Row_echelon_form
This is the same as [D][U].SingularValue.getU()If [A] is m-by-n and its rank is r, then: The first r columns of [U] span the column space, range or image of [A]. The last m-r columns of [U] span the left nullspace or cokernel of [A]. Calculating the QR decomposition of [A] is a faster alternative.Eigenvalue.getV()The columns of [V] represent the eigenvectors of [A] in the sense that [A][V] = [V][D].SingularValue.getV()If [A] is m-by-n and its rank is r, then: The first r columns of [V] span the row space or coimage of [A]. The last n-r columns of [V] span the nullspace or kernel of [A]. Calculating the QR decomposition of [A]T is a faster alternative.static <N extends Comparable<N>>
MatrixStore<N> SingularValue.invert(SingularValue<N> decomposition, PhysicalStore<N> preallocated) SparseQDLDL.invert(Access2D<?> original, PhysicalStore<Double> preallocated) default MatrixStore<N> Bidiagonal.reconstruct()default MatrixStore<N> Cholesky.reconstruct()default MatrixStore<N> Eigenvalue.reconstruct()static <N extends Comparable<N>>
MatrixStore<N> Eigenvalue.reconstruct(Eigenvalue<N> decomposition) default MatrixStore<N> Eigenvalue.Spectral.reconstruct()default MatrixStore<N> Hessenberg.reconstruct()default MatrixStore<N> LDL.reconstruct()default MatrixStore<N> LU.reconstruct()MatrixDecomposition.reconstruct()default MatrixStore<N> QR.reconstruct()default MatrixStore<N> SingularValue.reconstruct()default MatrixStore<N> SingularValue.reconstruct(int k) static <N extends Comparable<N>>
MatrixStore<N> SingularValue.reconstruct(SingularValue<N> decomposition) default MatrixStore<N> Tridiagonal.reconstruct()static <N extends Comparable<N>>
MatrixStore<N> SingularValue.solve(SingularValue<N> decomposition, MatrixStore<N> rhs, PhysicalStore<N> preallocated) SparseQDLDL.solve(Access2D<?> body, Access2D<?> rhs, PhysicalStore<Double> preallocated) Methods in org.ojalgo.matrix.decomposition that return types with arguments of type MatrixStoreModifier and TypeMethodDescriptiondefault Optional<MatrixStore<N>> MatrixDecomposition.Solver.invert()default Optional<MatrixStore<N>> default Provider2D.Inverse<Optional<MatrixStore<N>>> MatrixDecomposition.Solver.toInverseProvider(ElementsSupplier<N> original, Supplier<MatrixStore<N>> alternativeOriginalSupplier) default Provider2D.Solution<Optional<MatrixStore<N>>> MatrixDecomposition.Solver.toSolutionProvider(ElementsSupplier<N> body, Supplier<MatrixStore<N>> alternativeBodySupplier, Access2D<?> rhs) Methods in org.ojalgo.matrix.decomposition with parameters of type MatrixStoreModifier and TypeMethodDescriptiondefault booleanMatrixDecomposition.Hermitian.checkAndDecompose(MatrixStore<N> matrix) Absolutely must check if the matrix is hermitian or not.static <N extends Comparable<N>>
booleanBidiagonal.equals(MatrixStore<N> matrix, Bidiagonal<N> decomposition, NumberContext context) static <N extends Comparable<N>>
booleanCholesky.equals(MatrixStore<N> matrix, Cholesky<N> decomposition, NumberContext context) static <N extends Comparable<N>>
booleanEigenvalue.equals(MatrixStore<N> matrix, Eigenvalue<N> decomposition, NumberContext context) static <N extends Comparable<N>>
booleanHessenberg.equals(MatrixStore<N> matrix, Hessenberg<N> decomposition, NumberContext context) static <N extends Comparable<N>>
booleanLDL.equals(MatrixStore<N> matrix, LDL<N> decomposition, NumberContext context) static <N extends Comparable<N>>
booleanLU.equals(MatrixStore<N> matrix, LU<N> decomposition, NumberContext context) static <N extends Comparable<N>>
booleanQR.equals(MatrixStore<N> matrix, QR<N> decomposition, NumberContext context) static <N extends Comparable<N>>
booleanSingularValue.equals(MatrixStore<N> matrix, SingularValue<N> decomposition, NumberContext context) static <N extends Comparable<N>>
booleanTridiagonal.equals(MatrixStore<N> matrix, Tridiagonal<N> decomposition, NumberContext context) static <N extends Comparable<N>>
MatrixStore<N> SingularValue.solve(SingularValue<N> decomposition, MatrixStore<N> rhs, PhysicalStore<N> preallocated) Method parameters in org.ojalgo.matrix.decomposition with type arguments of type MatrixStoreModifier and TypeMethodDescriptiondefault Provider2D.Determinant<N> MatrixDecomposition.Determinant.toDeterminantProvider(ElementsSupplier<N> original, Supplier<MatrixStore<N>> alternativeOriginalSupplier) default Provider2D.Inverse<Optional<MatrixStore<N>>> MatrixDecomposition.Solver.toInverseProvider(ElementsSupplier<N> original, Supplier<MatrixStore<N>> alternativeOriginalSupplier) default Provider2D.Solution<Optional<MatrixStore<N>>> MatrixDecomposition.Solver.toSolutionProvider(ElementsSupplier<N> body, Supplier<MatrixStore<N>> alternativeBodySupplier, Access2D<?> rhs) -
Uses of MatrixStore in org.ojalgo.matrix.store
Subinterfaces of MatrixStore in org.ojalgo.matrix.storeModifier and TypeInterfaceDescriptioninterfacePhysicalStore<N extends Comparable<N>>PhysicalStore:s, as opposed to MatrixStore:s, are mutable.Classes in org.ojalgo.matrix.store that implement MatrixStoreModifier and TypeClassDescriptionfinal classColumnsSupplier<N extends Comparable<N>>Sparse columns – columns can be added and removed.final classDiagonalStore<N extends Comparable<N>,D extends Access1D<?>> final classGenericStore<N extends Scalar<N>>A generic implementation of PhysicalStore.final classAimplementation of PhysicalStore.invalid reference
float
final classA compressed sparse column (CSC) matrix store implementation for double precision values.final classA compressed sparse row (CSR) matrix store implementation for double precision values.final classAimplementation of PhysicalStore.invalid reference
double
final classUses double[][] internally.final classRowsSupplier<N extends Comparable<N>>Sparse rows – rows can be added and removed.final classSparseStore<N extends Comparable<N>>A sparse matrix (this implementation) is not thread safe.Methods in org.ojalgo.matrix.store that return MatrixStoreModifier and TypeMethodDescriptiondefault MatrixStore<N> MatrixStore.above(long numberOfRows) default MatrixStore<N> default MatrixStore<N> default MatrixStore<N> MatrixStore.add(double scalarAddend) default MatrixStore<N> default MatrixStore<N> MatrixStore.add(MatrixStore<N> addend) default MatrixStore<N> MatrixStore.below(long numberOfRows) default MatrixStore<N> default MatrixStore<N> default MatrixStore<N> MatrixStore.bidiagonal(boolean upper) default MatrixStore<N> MatrixStore.column(int column) default MatrixStore<N> MatrixStore.column(long column) ColumnsSupplier.columns(int... columns) default MatrixStore<N> MatrixStore.columns(int... columns) A selection (re-ordering) of columns.default MatrixStore<N> MatrixStore.columns(long... columns) GenericStore.conjugate()default MatrixStore<N> MatrixStore.conjugate()Returns the conjugate transpose of this matrix.R032Store.conjugate()R064Store.conjugate()RawStore.conjugate()default MatrixStore<N> MatrixStore.diagonal()default MatrixStore<N> MatrixStore.diagonally(Access2D<N>... diagonally) default MatrixStore<N> MatrixStore.divide(double scalarDivisor) default MatrixStore<N> GenericStore.get()default MatrixStore<N> MatrixStore.get()Deprecated.v50 No need asMatrixStorenow implementsand this method simply return "this".invalid reference
LogicalR064Store.get()RawStore.get()default MatrixStore<N> MatrixStore.hermitian(boolean upper) default MatrixStore<N> MatrixStore.hessenberg(boolean upper) default MatrixStore<N> MatrixStore.left(long numberOfColumns) default MatrixStore<N> default MatrixStore<N> default MatrixStore<N> MatrixStore.limits(long rowLimit, long columnLimit) Setting either limit to < 0 is interpreted as "no limit" (useful when you only want to limit either the rows or columns, and don't know the size of the other)default MatrixStore<N> MatrixStore.logical()Deprecated.v50 No need asMatrixStorenow implements.invalid reference
Logicaldefault MatrixStore<N> PhysicalStore.Factory.makeIdentity(long dimension) default MatrixStore<N> PhysicalStore.Factory.makeSingle(double element) default MatrixStore<N> PhysicalStore.Factory.makeSingle(N element) default MatrixStore<N> PhysicalStore.Factory.makeWrapper(Access2D<?> access) default MatrixStore<N> PhysicalStore.Factory.makeWrapperColumn(Access1D<?> access) default MatrixStore<N> PhysicalStore.Factory.makeZero(long rowsCount, long columnsCount) default MatrixStore<N> PhysicalStore.Factory.makeZero(Structure2D shape) GenericStore.multiply(MatrixStore<N> right) default MatrixStore<N> MatrixStore.multiply(double scalarMultiplicand) default MatrixStore<N> default MatrixStore<N> MatrixStore.multiply(MatrixStore<N> right) R032Store.multiply(MatrixStore<Double> right) R064Store.multiply(MatrixStore<Double> right) SparseStore.multiply(double scalar) SparseStore.multiply(MatrixStore<N> right) default MatrixStore<N> MatrixStore.negate()default MatrixStore<N> MatrixStore.offsets(long rowOffset, long columnOffset) default MatrixStore<N> MatrixStore.onAll(UnaryFunction<N> operator) default MatrixStore<N> MatrixStore.power(int power) Multiply this matrix by itselfpowertimes.default MatrixStore<N> MatrixStore.repeat(int rowsRepetitions, int columnsRepetitions) default MatrixStore<N> MatrixStore.right(long numberOfColumns) default MatrixStore<N> default MatrixStore<N> default MatrixStore<N> MatrixStore.row(int row) default MatrixStore<N> MatrixStore.row(long row) default MatrixStore<N> MatrixStore.rows(int... rows) A selection (re-ordering) of rows.default MatrixStore<N> MatrixStore.rows(long... rows) RowsSupplier.rows(int... rows) default MatrixStore<N> MatrixStore.select(int[] rows, int[] columns) default MatrixStore<N> MatrixStore.select(long[] rows, long[] columns) default MatrixStore<N> MatrixStore.signum()default MatrixStore<N> MatrixStore.subtract(double scalarSubtrahend) default MatrixStore<N> default MatrixStore<N> MatrixStore.subtract(MatrixStore<N> subtrahend) default MatrixStore<N> MatrixStore.superimpose(long row, long col, Access2D<N> matrix) default MatrixStore<N> MatrixStore.superimpose(Access2D<N> matrix) default MatrixStore<N> MatrixStore.symmetric(boolean upper) GenericStore.transpose()default MatrixStore<N> MatrixStore.transpose()default MatrixStore<N> MatrixStore.triangular(boolean upper, boolean assumeOne) default MatrixStore<N> MatrixStore.tridiagonal()Methods in org.ojalgo.matrix.store with parameters of type MatrixStoreModifier and TypeMethodDescriptiondefault MatrixStore<N> MatrixStore.add(MatrixStore<N> addend) default booleanMatrixStore.equals(MatrixStore<N> other, NumberContext context) GenericStore.multiply(MatrixStore<N> right) default MatrixStore<N> MatrixStore.multiply(MatrixStore<N> right) R032Store.multiply(MatrixStore<Double> right) R064Store.multiply(MatrixStore<Double> right) RawStore.multiply(MatrixStore<Double> right) SparseStore.multiply(MatrixStore<N> right) default MatrixStore<N> MatrixStore.subtract(MatrixStore<N> subtrahend) -
Uses of MatrixStore in org.ojalgo.matrix.task
Methods in org.ojalgo.matrix.task that return MatrixStoreModifier and TypeMethodDescriptionfinal MatrixStore<Double> default MatrixStore<N> The output must be a "right inverse" and a "generalised inverse".InverterTask.invert(Access2D<?> original, PhysicalStore<N> preallocated) Exactly how (if at all) a specific implementation makes use ofpreallocatedis not specified by this interface.[A][X]=[B] or [body][return]=[rhs]default MatrixStore<N> [A][X]=[B] or [body][return]=[rhs]SolverTask.solve(Access2D<?> body, Access2D<?> rhs, PhysicalStore<N> preallocated) Exactly how (if at all) a specific implementation makes use ofpreallocatedis not specified by this interface.Methods in org.ojalgo.matrix.task that return types with arguments of type MatrixStoreModifier and TypeMethodDescriptiondefault Provider2D.Inverse<Optional<MatrixStore<N>>> InverterTask.toInverseProvider(ElementsSupplier<N> original, Supplier<MatrixStore<N>> alternativeOriginalSupplier) default Provider2D.Solution<Optional<MatrixStore<N>>> SolverTask.toSolutionProvider(ElementsSupplier<N> body, Supplier<MatrixStore<N>> alternativeBodySupplier, Access2D<?> rhs) Methods in org.ojalgo.matrix.task with parameters of type MatrixStoreModifier and TypeMethodDescriptionfinal DeterminantTask<N> DeterminantTask.Factory.make(MatrixStore<N> template) InverterTask.Factory.make(MatrixStore<N> template) SolverTask.Factory.make(MatrixStore<N> templateBody, MatrixStore<N> templateRHS) Method parameters in org.ojalgo.matrix.task with type arguments of type MatrixStoreModifier and TypeMethodDescriptiondefault Provider2D.Determinant<N> DeterminantTask.toDeterminantProvider(ElementsSupplier<N> original, Supplier<MatrixStore<N>> alternativeOriginalSupplier) default Provider2D.Inverse<Optional<MatrixStore<N>>> InverterTask.toInverseProvider(ElementsSupplier<N> original, Supplier<MatrixStore<N>> alternativeOriginalSupplier) default Provider2D.Solution<Optional<MatrixStore<N>>> SolverTask.toSolutionProvider(ElementsSupplier<N> body, Supplier<MatrixStore<N>> alternativeBodySupplier, Access2D<?> rhs) -
Uses of MatrixStore in org.ojalgo.matrix.task.iterative
Methods in org.ojalgo.matrix.task.iterative that return MatrixStoreModifier and TypeMethodDescriptionfinal MatrixStore<Double> IterativeSolverTask.solve(Access2D<?> body, Access2D<?> rhs, PhysicalStore<Double> preallocated) MutableSolver.solve(Access2D<?> body, Access2D<?> rhs, PhysicalStore<Double> current) Methods in org.ojalgo.matrix.task.iterative that return types with arguments of type MatrixStoreModifier and TypeMethodDescriptionfinal Optional<MatrixStore<Double>> IterativeSolverTask.solve(MatrixStore<Double> body, MatrixStore<Double> rhs) Methods in org.ojalgo.matrix.task.iterative with parameters of type MatrixStoreModifier and TypeMethodDescriptionfinal Optional<MatrixStore<Double>> IterativeSolverTask.solve(MatrixStore<Double> body, MatrixStore<Double> rhs) -
Uses of MatrixStore in org.ojalgo.matrix.transformation
Methods in org.ojalgo.matrix.transformation with parameters of type MatrixStoreModifier and TypeMethodDescriptionstatic <N extends Comparable<N>>
HouseholderReference<N> HouseholderReference.make(MatrixStore<N> matrix, boolean column) static <N extends Comparable<N>>
HouseholderReference<N> HouseholderReference.makeColumn(MatrixStore<N> matrix) static <N extends Comparable<N>>
HouseholderReference<N> HouseholderReference.makeRow(MatrixStore<N> matrix) -
Uses of MatrixStore in org.ojalgo.optimisation
Methods in org.ojalgo.optimisation that return MatrixStoreModifier and TypeMethodDescriptionExpression.getAdjustedGradient(Access1D<?> point) Expression.getAdjustedHessian()protected MatrixStore<Double> GenericSolver.Builder.getAE()Equality constraints body: [AE][X] == [BE]protected MatrixStore<Double> GenericSolver.Builder.getAI()Inequality constraints body: [AI][X] invalid input: '<'= [BI]protected MatrixStore<Double> GenericSolver.Builder.getBE()Equality constraints RHS: [AE][X] == [BE]protected MatrixStore<Double> GenericSolver.Builder.getBI()Inequality constraints RHS: [AI][X] invalid input: '<'= [BI]protected MatrixStore<Double> GenericSolver.Builder.getC()Methods in org.ojalgo.optimisation with parameters of type MatrixStoreModifier and TypeMethodDescriptionprotected static final voidGenericSolver.Builder.append(StringBuilder builder, String label, MatrixStore<Double> matrix) -
Uses of MatrixStore in org.ojalgo.optimisation.convex
Methods in org.ojalgo.optimisation.convex that return MatrixStoreModifier and TypeMethodDescriptionConvexData.getBE()Equality constraints RHS: [AE][X] == [BE]ConvexData.getBI()Inequality constraints RHS: [AI][X] invalid input: '<'= [BI]ConvexObjectiveFunction.getGradient(Access1D<N> point) ConvexObjectiveFunction.getHessian(Access1D<N> point) ConvexObjectiveFunction.getLinearFactors(boolean negated) Methods in org.ojalgo.optimisation.convex with parameters of type MatrixStoreModifier and TypeMethodDescriptionConvexSolver.Builder.objective(MatrixStore<?> mtrxQ, MatrixStore<?> mtrxC) -
Uses of MatrixStore in org.ojalgo.optimisation.integer
Methods in org.ojalgo.optimisation.integer that return MatrixStore -
Uses of MatrixStore in org.ojalgo.optimisation.linear
Methods in org.ojalgo.optimisation.linear with parameters of type MatrixStore -
Uses of MatrixStore in org.ojalgo.scalar
Methods in org.ojalgo.scalar that return MatrixStoreModifier and TypeMethodDescriptionQuaternion.toComplexMatrix()ComplexNumber.toMultiplicationMatrix()Quaternion.toMultiplicationMatrix()ComplexNumber.toMultiplicationVector()Quaternion.toMultiplicationVector()ComplexNumber.toRotationMatrix()Quaternion.toRotationMatrix() -
Uses of MatrixStore in org.ojalgo.series.primitive
Methods in org.ojalgo.series.primitive that return MatrixStoreModifier and TypeMethodDescriptionCoordinatedSet.getSamples()CoordinatedSet.getSamples(UnaryOperator<PrimitiveSeries> operator)
SingularValue.getS()instead