Package example

Source Code of example.BasicNDArrayUsage

package example;

import mikera.arrayz.NDArray;

public class BasicNDArrayUsage {

  public static void main(String[] args) {
    // create a new 3x3x3 array
    NDArray a1=NDArray.newArray(3,3,3);
   
    // fill a slice on dimension 1 with zeros
    a1.slice(1,1).fill(2.0);
   
    // add 1.0 to the first slice (on dimension 0 by default)
    a1.slice(0).add(1);
   
    System.out.println(a1);
  }

}
TOP

Related Classes of example.BasicNDArrayUsage

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.