Package io.bhagat.math.linearalgebra
Class Matrix.OuterProductSVD
- java.lang.Object
-
- io.bhagat.math.linearalgebra.Matrix.OuterProductSVD
-
- All Implemented Interfaces:
java.io.Serializable
- Enclosing class:
- Matrix
public static class Matrix.OuterProductSVD extends java.lang.Object implements java.io.SerializableA class to hold all the parts of the outer product form of the SVD- Author:
- Bhagat
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description private static longserialVersionUIDdouble[]singularValuesVector[]usVector[]vs
-
Constructor Summary
Constructors Constructor Description OuterProductSVD(double[] singularValues, Vector[] us, Vector[] vs)creates a new SVD solution
-
-
-
Field Detail
-
serialVersionUID
private static final long serialVersionUID
- See Also:
- Constant Field Values
-
singularValues
public double[] singularValues
-
us
public Vector[] us
-
vs
public Vector[] vs
-
-