Uses of Class
org.episteme.core.mathematics.linearalgebra.matrices.RealDoubleMatrix
Packages that use RealDoubleMatrix
Package
Description
Provides the
module.
invalid reference
org.episteme.core.ml.mathml
Systems Biology Markup Language (SBML) loader for Episteme.
-
Uses of RealDoubleMatrix in org.episteme.core.mathematics.linearalgebra.matrices
Methods in org.episteme.core.mathematics.linearalgebra.matrices that return RealDoubleMatrixModifier and TypeMethodDescriptionstatic RealDoubleMatrixRealDoubleMatrix.diagonal(double[] data) Creates a diagonal RealDoubleMatrix from a double array.static RealDoubleMatrixRealDoubleMatrix.direct(int rows, int cols) Creates a RealDoubleMatrix intended for direct/native usage.RealDoubleMatrix.inverse()RealDoubleMatrix.multiply(RealDoubleMatrix other) Optimized matrix multiplication (GEMM).static RealDoubleMatrixRealDoubleMatrix.of(double[][] values) Creates a RealDoubleMatrix from a 2D double array (Heap Storage).static RealDoubleMatrixRealDoubleMatrix.of(double[] data, int rows, int cols) Creates a RealDoubleMatrix from a flattened double array.static RealDoubleMatrixRealDoubleMatrix.of(double[] data, int rows, int cols, LinearAlgebraProvider<Real> provider) static RealDoubleMatrixRealDoubleMatrix.of(RealDoubleMatrixStorage storage) Creates a RealDoubleMatrix from a specialized storage.RealDoubleMatrix.subtract(RealDoubleMatrix other) RealDoubleMatrix.transpose()Methods in org.episteme.core.mathematics.linearalgebra.matrices with parameters of type RealDoubleMatrixModifier and TypeMethodDescriptionRealDoubleMatrix.multiply(RealDoubleMatrix other) Optimized matrix multiplication (GEMM).RealDoubleMatrix.subtract(RealDoubleMatrix other) -
Uses of RealDoubleMatrix in org.episteme.core.mathematics.loaders.mathml
Methods in org.episteme.core.mathematics.loaders.mathml with parameters of type RealDoubleMatrix -
Uses of RealDoubleMatrix in org.episteme.natural.biology.loaders.sbml
Methods in org.episteme.natural.biology.loaders.sbml that return RealDoubleMatrixModifier and TypeMethodDescriptionSBMLModel.getStoichiometryMatrix()Constructs the stoichiometry matrix S where S[i][j] is the stoichiometric coefficient of species i in reaction j. -
Uses of RealDoubleMatrix in org.episteme.natural.physics.loaders.fits
Subclasses with type arguments of type RealDoubleMatrix in org.episteme.natural.physics.loaders.fitsModifier and TypeClassDescriptionclassResource Reader for FITS (Flexible Image Transport System) files.Methods in org.episteme.natural.physics.loaders.fits that return RealDoubleMatrixModifier and TypeMethodDescriptionFITSFile.asMatrix()Reads the primary image HDU as a Matrix.ImageHDU.asMatrix(ReadableByteChannel channel) Reads the image data as a 2D Matrix of Reals.protected RealDoubleMatrixFITSReader.loadFromInputStream(InputStream is, String id) protected RealDoubleMatrixFITSReader.loadFromSource(String resourceId) Methods in org.episteme.natural.physics.loaders.fits that return types with arguments of type RealDoubleMatrix -
Uses of RealDoubleMatrix in org.episteme.social.economics.models
Methods in org.episteme.social.economics.models that return RealDoubleMatrixModifier and TypeMethodDescriptionLeontiefModel.solve(RealDoubleMatrix A, RealDoubleMatrix d) Solves the Leontief system for a given technical coefficient matrix and final demand.Methods in org.episteme.social.economics.models with parameters of type RealDoubleMatrixModifier and TypeMethodDescriptionLeontiefModel.solve(RealDoubleMatrix A, RealDoubleMatrix d) Solves the Leontief system for a given technical coefficient matrix and final demand.