Package org.jquantlib.math.matrixutilities

Examples of org.jquantlib.math.matrixutilities.Matrix.sub()


        }

        // check normalization
        final Matrix m = eigenVectors.mul(eigenVectors.transpose());
        final Identity ID = new Identity(N);
        final double tol = norm(m.sub(ID));
        if (tol > 1.0e-15) {
                fail("Eigenvector not normalized");
            }
      }
    }
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.