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 classBasicMatrix<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) classDenseMutator2D<N extends java.lang.Comparable<N>,M extends BasicMatrix<N,M>>classMatrixFactory<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) classSparseMutator2D<N extends java.lang.Comparable<N>,M extends BasicMatrix<N,M>>Subclasses of BasicMatrix in org.ojalgo.matrix Modifier and Type Class Description classMatrixC128A matrix (linear algebra) with ComplexNumberSet.Celements, implemented using dual 64-bit double values.classMatrixH256A matrix (linear algebra) with QuaternionNumberSet.Helements, implemented using four 64-bit double values.classMatrixQ128A matrix (linear algebra) with RationalNumberSet.Qelements, implemented using dual 64-bit long values.classMatrixR032A matrix (linear algebra) with RealNumberSet.Relements, approximated by 32-bit float.classMatrixR064A matrix (linear algebra) with RealNumberSet.Relements, approximated by 64-bit double.classMatrixR128A matrix (linear algebra) with RealNumberSet.Relements, 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)
-