public class SphericalDistributionFitter
extends java.lang.Object
Constructor and Description |
---|
SphericalDistributionFitter() |
Modifier and Type | Method and Description |
---|---|
static RealMatrix |
tBar(Vector3D[] sampleVecs) |
static EigenSystem3D |
tBarEigenSystem(double[] tBarComps)
Gets the eigen system of the scatter matrix from an array.
|
static EigenSystem3D |
tBarEigenSystem(double[] tBarComps,
boolean upperTriangular)
Gets the eigen system of the scatter matrix from an array.
|
static EigenSystem3D |
tBarEigenSystem(RealMatrix tBar) |
static EigenSystem3D |
tBarEigenSystem(Vector3D[] sampleVecs) |
public static RealMatrix tBar(Vector3D[] sampleVecs)
public static EigenSystem3D tBarEigenSystem(RealMatrix tBar)
public static EigenSystem3D tBarEigenSystem(Vector3D[] sampleVecs)
public static EigenSystem3D tBarEigenSystem(double[] tBarComps, boolean upperTriangular)
tBarComps
- {txx, txy, txz, tyy, tyz, tzz} (upper triangular) or
{txx, txy, tyy, txz, tyz, tzz} (lower triangular).upperTriangular
- true if the comps are in upper triangular format.public static EigenSystem3D tBarEigenSystem(double[] tBarComps)
tBarComps
- {txx, txy, txz, tyy, tyz, tzz}.