|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectfhm.edu.fem.calc.objects.matrix.MatrixFactory
public class MatrixFactory
Class Description: This class creates the different types of matrices
Field Summary | |
---|---|
protected static Logger |
localLogger
|
Method Summary | |
---|---|
static MatrixHull |
createHullMatrix(java.lang.String name,
double[][] values)
Create a new Hull Matrix |
static MatrixHull |
createHullMatrix(java.lang.String name,
int size)
Create a new Hull Matrix |
static MatrixStandard |
createStandardMatrix(java.lang.String name,
double[][] values)
Create a new Standard Matrix |
static MatrixStandard |
createStandardMatrix(java.lang.String name,
int size)
Create a new Standard Matrix |
static Matrix |
createUserDefinedMatrix(java.lang.String name,
double[][] values)
Creates the type of matrix the user defined in the constants file |
static Matrix |
createUserDefinedMatrix(java.lang.String name,
int size)
Creates the type of matrix the user defined in the constants file |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
---|
protected static Logger localLogger
Method Detail |
---|
public static MatrixHull createHullMatrix(java.lang.String name, double[][] values)
name,
- the name of the matrixvalues,
- double array holding the values to store
public static MatrixHull createHullMatrix(java.lang.String name, int size)
name,
- the name of the matrixsize,
- the size of the matrix (symmetric)
public static MatrixStandard createStandardMatrix(java.lang.String name, double[][] values)
name,
- the name of the matrixvalues,
- double array holding the values to store
public static MatrixStandard createStandardMatrix(java.lang.String name, int size)
name,
- the name of the matrixsize,
- the size of the matrix (symmetric)
public static Matrix createUserDefinedMatrix(java.lang.String name, double[][] values)
name,
- the name of the matrixvalues,
- double array holding the values (has to be quadratic)
public static Matrix createUserDefinedMatrix(java.lang.String name, int size)
name,
- the name of the matrixsize,
- the size of the matrix (symmetric)
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |