Package org.ejml.simple

Examples of org.ejml.simple.SimpleMatrix.trace()


        q.combine(n, 1*n, d);

        SimpleMatrix x = p.transpose().mult(p);
        x = x.mult(x);
        x = x.mult(x);
        v.set(i, x.trace());

        x = q.transpose().mult(q);
        x = x.mult(x);
        x = x.mult(x);
        w.set(i, x.trace());
View Full Code Here


        v.set(i, x.trace());

        x = q.transpose().mult(q);
        x = x.mult(x);
        x = x.mult(x);
        w.set(i, x.trace());

      }
      return new double[]{stdev(v)/mean(v),stdev(w)/mean(w)};
  }
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.