Package org.jquantlib.math.matrixutilities

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


    final /*@Real*/ double inv = 1.0/sampleWeight;

    final Matrix result = quadraticSum.mul(inv);
    result.subAssign(m.outerProduct(m));

    result.mulAssign( sampleNumber/(sampleNumber-1.0) );
    return result;
  }

  /**
   * returns the correlation Matrix
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.