Package | Description |
---|---|
fr.cnes.sirius.patrius.math.linear |
Modifier and Type | Method and Description |
---|---|
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.
|
Modifier and Type | Method and Description |
---|---|
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.
|
Constructor and Description |
---|
SymmetricMatrix(SymmetricMatrix.SYMMETRIC uploIn,
int nIn,
int ldIn)
Creates a matrix with the supplied dimensions.
|
SymmetricMatrix(SymmetricMatrix.SYMMETRIC uploIn,
int nIn,
int ldIn,
double[] dIn)
Creates a matrix given the supplied dimensions and data array.
|
SymmetricMatrix(SymmetricMatrix.SYMMETRIC uploIn,
int nIn,
int ldIn,
double[][] d)
Creates a matrix given the supplied dimensions and data array 2D.
|
SymmetricMatrix(SymmetricMatrix.SYMMETRIC uploIn,
int nIn,
int ldIn,
double[] d,
boolean copyArray)
Creates a matrix given the supplied dimensions and data array.
|
SymmetricMatrix(SymmetricMatrix.SYMMETRIC uploIn,
int nIn,
int ldIn,
RealMatrix m)
Creates a symmetric matrix using a real matrix.
|
Copyright © 2019 CNES. All Rights Reserved.