Class EigenvalueSmall_F32
java.lang.Object
org.ejml.dense.row.decomposition.eig.EigenvalueSmall_F32
@Generated("org.ejml.dense.row.decomposition.eig.EigenvalueSmall_F64")
public class EigenvalueSmall_F32
extends java.lang.Object
-
Field Summary
-
Constructor Summary
Constructors Constructor Description EigenvalueSmall_F32() -
Method Summary
Modifier and Type Method Description voidsymm2x2_fast(float a11, float a12, float a22)Compute the symmetric eigenvalue using a slightly safer techniquevoidvalue2x2(float a11, float a12, float a21, float a22)voidvalue2x2_fast(float a11, float a12, float a21, float a22)Computes the eigenvalues of a 2 by 2 matrix using a faster but more prone to errors method.
-
Field Details
-
Constructor Details
-
EigenvalueSmall_F32
public EigenvalueSmall_F32()
-
-
Method Details
-
value2x2
public void value2x2(float a11, float a12, float a21, float a22) -
value2x2_fast
public void value2x2_fast(float a11, float a12, float a21, float a22)Computes the eigenvalues of a 2 by 2 matrix using a faster but more prone to errors method. This is the typical method. -
symm2x2_fast
public void symm2x2_fast(float a11, float a12, float a22)Compute the symmetric eigenvalue using a slightly safer technique
-