Uses of Class
org.javaseis.array.MultiArray

Packages that use MultiArray
org.javaseis.array   
org.javaseis.io   
org.javaseis.parallel   
 

Uses of MultiArray in org.javaseis.array
 

Methods in org.javaseis.array that return MultiArray
static MultiArray MultiArray.factory(int ndim, java.lang.Class classType, int elementCount, int[] lengths)
          Factory method to create a new SeismicArray with allocated storage
static
<T> MultiArray
MultiArray.factory(int ndim, T[] obuf, int count, int[] lengths)
          Factory method to create a new SeismicArray from an array of objects
static MultiArray MultiArray.float2D(int n1, int n2)
          Factory method to create a new 2D float array
static MultiArray MultiArray.float3D(int n1, int n2, int n3)
          Factory method to create a new 3D float array
 

Uses of MultiArray in org.javaseis.io
 

Methods in org.javaseis.io with parameters of type MultiArray
 void Seisio.readMultiArray(MultiArray a, int[] position)
          Reads data from an open JavaSeis dataset into a MultiArray Shape must be greater than or equal to the JavaSeis dataset axis lengths for the subset that will be read.
 void Seisio.writeMultiArray(MultiArray a, int[] position)
          Write data from a MultiArray to an open JavaSeis dataset Shape must be conformable with the JavaSeis dataset axis lengths for the subset that will be written.
 

Uses of MultiArray in org.javaseis.parallel
 

Subclasses of MultiArray in org.javaseis.parallel
 class DistributedArray
          This class provides support for "distributed parallel arrays", a multidimensional array that has one or more dimensions spread across mulitple tasks in a parallel parallel context.
 

Methods in org.javaseis.parallel that return MultiArray
static MultiArray DistributedArray.factory(int ndim, java.lang.Class classType, int elementCount, int[] lengths)
           
static MultiArray DistributedArray.float2D(int n1, int n2)
           
static MultiArray DistributedArray.float3D(int n1, int n2, int n3)