Package mikera.vectorz

Examples of mikera.vectorz.Op.product()


 
  @Override
  public Op getDerivativeOp() {
    Op da=a.getDerivativeOp();
    Op db=b.getDerivativeOp();
    return (da.product(b)).sum(db.product(a));
  }
 
  @Override
  public boolean isStochastic() {
    return a.isStochastic()||b.isStochastic();
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.