Uses of Class
org.ojalgo.matrix.BasicMatrix
-
Packages that use BasicMatrix Package Description org.ojalgo.matrix -
-
Uses of BasicMatrix in org.ojalgo.matrix
Classes in org.ojalgo.matrix with type parameters of type BasicMatrix Modifier and Type Class Description class
BasicMatrix<N extends java.lang.Comparable<N>,M extends BasicMatrix<N,M>>
A base class for, easy to use, immutable (thread safe) matrices with a rich feature set.(package private) class
DenseMutator2D<N extends java.lang.Comparable<N>,M extends BasicMatrix<N,M>>
class
MatrixFactory<N extends java.lang.Comparable<N>,M extends BasicMatrix<N,M>,DR extends Mutate2D.ModifiableReceiver<N> & Factory2D.Builder<M>,SR extends Factory2D.Builder<M>>
MatrixFactory creates instances of classes that implement the BasicMatrix interface and have a constructor that takes a MatrixStore as input.(package private) class
SparseMutator2D<N extends java.lang.Comparable<N>,M extends BasicMatrix<N,M>>
Subclasses of BasicMatrix in org.ojalgo.matrix Modifier and Type Class Description class
MatrixC128
A matrix (linear algebra) with ComplexNumberSet.C
elements, implemented using dual 64-bit double values.class
MatrixH256
A matrix (linear algebra) with QuaternionNumberSet.H
elements, implemented using four 64-bit double values.class
MatrixQ128
A matrix (linear algebra) with RationalNumberSet.Q
elements, implemented using dual 64-bit long values.class
MatrixR032
A matrix (linear algebra) with RealNumberSet.R
elements, approximated by 32-bit float.class
MatrixR064
A matrix (linear algebra) with RealNumberSet.R
elements, approximated by 64-bit double.class
MatrixR128
A matrix (linear algebra) with RealNumberSet.R
elements, approximated by 128-bit floating-point values (implemented using dual 64-bit double).Methods in org.ojalgo.matrix with type parameters of type BasicMatrix Modifier and Type Method Description static <M extends BasicMatrix<?,M>>
doubleBasicMatrix. calculateFrobeniusNorm(M matrix)
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 <M extends BasicMatrix<?,M>>
doubleBasicMatrix. calculateInfinityNorm(M matrix)
static <M extends BasicMatrix<?,M>>
doubleBasicMatrix. calculateOneNorm(M matrix)
Methods in org.ojalgo.matrix that return types with arguments of type BasicMatrix Modifier and Type Method Description private static java.lang.reflect.Constructor<? extends BasicMatrix<?,?>>
MatrixFactory. getConstructor(java.lang.Class<? extends BasicMatrix<?,?>> template)
Method parameters in org.ojalgo.matrix with type arguments of type BasicMatrix Modifier and Type Method Description private static java.lang.reflect.Constructor<? extends BasicMatrix<?,?>>
MatrixFactory. getConstructor(java.lang.Class<? extends BasicMatrix<?,?>> template)
-