Package mikera.vectorz

Examples of mikera.vectorz.AVector.outerProduct()


    assertTrue(a instanceof AMatrix);
  }
 
  @Test public void testOuterProducts() {
    AVector v=Vectorz.createUniformRandomVector(5);
    INDArray a=v.outerProduct(v);
    assertTrue(a instanceof AMatrix);
   
    AMatrix m=(AMatrix)a;
    AVector v2=v.clone();
    v2.square();
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.