Package org.drip.sample.matrix
Class LinearAlgebra
java.lang.Object
org.drip.sample.matrix.LinearAlgebra
public class LinearAlgebra
extends java.lang.Object
LinearAlgebra implements Samples for Linear Algebra and Matrix Manipulations. It demonstrates the
following:
- Compute the inverse of a matrix, and multiply with the original to recover the unit matrix
- Solves system of linear equations using one the exposed techniques
- Module = Computational Core Module
- Library = Numerical Analysis Library
- Project = DROP API Construction and Usage
- Package = Cholesky Factorization, PCA, and Eigenization
- Author:
- Lakshmi Krishnamurthy
-
Constructor Summary
Constructors Constructor Description LinearAlgebra()
-
Method Summary
Modifier and Type Method Description static void
main(java.lang.String[] astrArgs)
Entry PointMethods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Constructor Details
-
LinearAlgebra
public LinearAlgebra()
-
-
Method Details
-
main
public static final void main(java.lang.String[] astrArgs)Entry Point- Parameters:
astrArgs
- Command Line Argument Array
-