|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use SymmetricMatrix.SYMMETRIC | |
---|---|
org.apache.commons.math3.linear | Linear algebra support. |
Uses of SymmetricMatrix.SYMMETRIC in org.apache.commons.math3.linear |
---|
Methods in org.apache.commons.math3.linear that return SymmetricMatrix.SYMMETRIC | |
---|---|
static SymmetricMatrix.SYMMETRIC |
SymmetricMatrix.SYMMETRIC.valueOf(String name)
Returns the enum constant of this type with the specified name. |
static SymmetricMatrix.SYMMETRIC[] |
SymmetricMatrix.SYMMETRIC.values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods in org.apache.commons.math3.linear with parameters of type SymmetricMatrix.SYMMETRIC | |
---|---|
static SymmetricMatrix |
SymmetricMatrix.newByCopy(SymmetricMatrix.SYMMETRIC uplo,
int n,
int ld,
SymmetricMatrix.SYMMETRIC uploMat,
RealMatrix mat)
Create a symmetric matrix by copy of a triangle of a matrix. |
static SymmetricMatrix |
SymmetricMatrix.newByCopyAndSymmetrize(SymmetricMatrix.SYMMETRIC uplo,
int n,
int ld,
RealMatrix mat)
Create a symmetric matrix by computation of the mean of the 2 triangles of a matrix. |
static SymmetricMatrix |
SymmetricMatrix.newByCopyOfPackedStorage(SymmetricMatrix.SYMMETRIC uplo,
int n,
int ld,
double[] d)
Creates a symmetric matrix using one of the triangles stored in 'packed' storage. |
Constructors in org.apache.commons.math3.linear with parameters of type SymmetricMatrix.SYMMETRIC | |
---|---|
SymmetricMatrix(SymmetricMatrix.SYMMETRIC uplo,
int n,
int ld)
Creates a matrix with the supplied dimensions. |
|
SymmetricMatrix(SymmetricMatrix.SYMMETRIC uplo,
int n,
int ld,
double[] d)
Creates a matrix given the supplied dimensions and data array. |
|
SymmetricMatrix(SymmetricMatrix.SYMMETRIC uplo,
int n,
int ld,
double[][] d)
Creates a matrix given the supplied dimensions and data array 2D. |
|
SymmetricMatrix(SymmetricMatrix.SYMMETRIC uplo,
int n,
int ld,
double[] d,
boolean copyArray)
Creates a matrix given the supplied dimensions and data array. |
|
SymmetricMatrix(SymmetricMatrix.SYMMETRIC uplo,
int n,
int ld,
RealMatrix m)
Creates a symmetric matrix using a real matrix. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |