Uses of Class
mathcomp.la.Matrix

Packages that use Matrix
mathcomp.assemble Contains essential assembler classes. 
mathcomp.gui GUI-Implementation. 
mathcomp.io Classes for export. 
mathcomp.la Contains Linear Algebra Classes and the Index Infrastructure. 
mathcomp.la.external Linear solvers from other projects, partially native. 
mathcomp.la.solve Linear algebra Solvers. 
mathcomp.run Provides run classes that govern the alogorithms for entire calculation processes. 
 

Uses of Matrix in mathcomp.assemble
 

Methods in mathcomp.assemble that return Matrix
 Matrix Assembler.getElementMatrix(Triangle t)
          Return the Element Matrix of this Assembler
 Matrix Assembler.getM()
           
 

Methods in mathcomp.assemble with parameters of type Matrix
abstract  double AssemblerPair.assemblePair(Grid g, Triangle t, Matrix m, java.lang.Object u1, java.lang.Object v1)
          The concrete matrix-entry-assemble method returning the double value to the two DOF Objects u1 and v1.
 void Assembler.setM(Matrix matrix)
           
 

Uses of Matrix in mathcomp.gui
 

Methods in mathcomp.gui that return Matrix
 Matrix GeneralMain.getElementMatrix(Triangle t)
           
 Matrix GeneralMain.getLastM()
           
 

Methods in mathcomp.gui with parameters of type Matrix
 void GeneralMain.setLastM(Matrix lastM)
           
 

Constructors in mathcomp.gui with parameters of type Matrix
Main.MatrixTableModel(Matrix m, Vector y)
           
 

Uses of Matrix in mathcomp.io
 

Methods in mathcomp.io with parameters of type Matrix
static void MatlabExport.exportMatrix(Matrix m, java.lang.String fileName)
           
 

Uses of Matrix in mathcomp.la
 

Subclasses of Matrix in mathcomp.la
 class MapMatrix
           
 

Methods in mathcomp.la that return Matrix
abstract  Matrix Matrix.copy()
          Creates a copy of this matrix.
 Matrix MapMatrix.copy()
           
 Matrix Index.createMatrix()
          Creates a new Matrix indexed by this Index.
 Matrix CollectionIndex.createMatrix()
          Creates a new MapMatrix based on this index.
 Matrix Matrix.transpose(Matrix ret)
          Performs ret := this^T, i.e.
 

Methods in mathcomp.la with parameters of type Matrix
 Matrix Matrix.transpose(Matrix ret)
          Performs ret := this^T, i.e.
 

Uses of Matrix in mathcomp.la.external
 

Methods in mathcomp.la.external with parameters of type Matrix
static int Umfpack.calcNZ(Matrix m)
           
static jmp.Matrix JMP.convert(Matrix m, IndexToInteger i2i)
           
 

Constructors in mathcomp.la.external with parameters of type Matrix
Umfpack(Matrix m, IndexToInteger i2i, boolean indexStartsAtZero)
           
 

Uses of Matrix in mathcomp.la.solve
 

Fields in mathcomp.la.solve declared as Matrix
 Matrix AbstractSolver.m
           
 

Methods in mathcomp.la.solve that return Matrix
 Matrix AbstractSolver.getM()
           
 

Methods in mathcomp.la.solve with parameters of type Matrix
 void Solver.setM(Matrix m)
           
 void AbstractSolver.setM(Matrix matrix)
           
 

Uses of Matrix in mathcomp.run
 

Methods in mathcomp.run that return Matrix
 Matrix AssemblerRun.getM()
           
 

Methods in mathcomp.run with parameters of type Matrix
 void AssemblerRun.setM(Matrix m)