Package mikera.matrixx

Examples of mikera.matrixx.Matrix.join()


  }
 
  @Test
  public void testJoinedSlice() {
    Matrix m=Matrix.create(new double[][] {{1,2},{3,4}});
    INDArray j=m.join(m, 1);
    assertEquals(Vector.of(1,3),j.slice(1,0));
    assertEquals(Vector.of(2,4),j.slice(1,3));
  }
 
  @Test public void testParse() {
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.