ucar.ma2
Class MAMath

java.lang.Object
  extended by ucar.ma2.MAMath

public class MAMath
extends java.lang.Object

Element by element algebra on Arrays

Author:
caron
See Also:
Index

Nested Class Summary
static class MAMath.MinMax
          Holds a minimum and maximum value.
 
Constructor Summary
MAMath()
           
 
Method Summary
static Array add(Array a, Array b)
          Add elements of two arrays together, allocating the result array.
static void addDouble(Array result, Array a, Array b)
          Add elements of two arrays together as doubles, place sum in the result array.
static boolean conformable(Array a, Array b)
          Check that two arrays are conformable.
static boolean conformable(int[] shapeA, int[] shapeB)
          Check that two array shapes are conformable.
static void copy(Array result, Array a)
          copy array a to array result, the result array will be in canonical order The operation type is taken from the type of a.
static void copy(DataType dataType, IndexIterator from, IndexIterator to)
          Copy using iterators.
static void copyBoolean(Array result, Array a)
          copy array a to array result as bytes The array a and result must be type boolean
static void copyByte(Array result, Array a)
          copy array a to array result as bytes The values from the array a are converted to byte (if needed), and then converted to the type of result (if needed).
static void copyChar(Array result, Array a)
          copy array a to array result as char The values from the array a are converted to char (if needed), and then converted to the type of result (if needed).
static void copyDouble(Array result, Array a)
          copy array a to array result as doubles The values from the arrays a are converted to double (if needed), and then converted to the type of result (if needed).
static void copyFloat(Array result, Array a)
          copy array a to array result as floats The values from the arrays a are converted to float (if needed), and then converted to the type of result (if needed).
static void copyInt(Array result, Array a)
          copy array a to array result as integers The values from the arrays a are converted to integer (if needed), and then converted to the type of result (if needed).
static void copyLong(Array result, Array a)
          copy array a to array result as longs The values from the array a are converted to long (if needed), and then converted to the type of result (if needed).
static void copyObject(Array result, Array a)
          copy array a to array result as an Object The array a and result must be type object
static void copyShort(Array result, Array a)
          copy array a to array result as shorts The values from the array a are converted to short (if needed), and then converted to the type of result (if needed).
static double getMaximum(Array a)
           
static double getMaximumSkipMissingData(Array a, double missingValue)
           
static double getMinimum(Array a)
           
static double getMinimumSkipMissingData(Array a, double missingValue)
           
static MAMath.MinMax getMinMax(Array a)
          Find min and max value in this array, getting values as doubles.
static MAMath.MinMax getMinMaxSkipMissingData(Array a, double missingValue)
           
static int reducedRank(int[] shape)
          Calculate the reduced rank of this shape, by subtracting dimensions with length 1
static void setDouble(Array result, double val)
          Set all the elements of this array to the given double value.
static double sumDouble(Array a)
          sum all of the elements of array a as doubles.
static double sumDoubleSkipMissingData(Array a, double missingValue)
          sum all of the elements of array a as doubles.
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

MAMath

public MAMath()
Method Detail

add

public static Array add(Array a,
                        Array b)
                 throws java.lang.IllegalArgumentException
Add elements of two arrays together, allocating the result array. The result type and the operation type are taken from the type of a.

Parameters:
a - add values from here
b - add values from here
Returns:
result = a + b
Throws:
java.lang.IllegalArgumentException - a and b are not conformable
java.lang.UnsupportedOperationException - dont support this data type yet

addDouble

public static void addDouble(Array result,
                             Array a,
                             Array b)
                      throws java.lang.IllegalArgumentException
Add elements of two arrays together as doubles, place sum in the result array. The values from the arrays a and b are converted to double (if needed), and the sum is converted to the type of result (if needed).

Parameters:
result - result array
a - operand
b - operand
Throws:
java.lang.IllegalArgumentException - a,b,and result are not conformable

conformable

public static boolean conformable(Array a,
                                  Array b)
Check that two arrays are conformable.

Parameters:
a - operand
b - operand
Returns:
true if conformable

conformable

public static boolean conformable(int[] shapeA,
                                  int[] shapeB)
Check that two array shapes are conformable. The shapes must match exactly, except that dimensions of length 1 are ignored.

Parameters:
shapeA - shape of array 1
shapeB - shape of array 2
Returns:
true if conformable

copy

public static void copy(DataType dataType,
                        IndexIterator from,
                        IndexIterator to)
                 throws java.lang.IllegalArgumentException
Copy using iterators. Will copy until !from.hasNext().

Parameters:
dataType - use this operation type (eg DataType.DOUBLE uses getDoubleNext())
from - copy from here
to - copy to here
Throws:
java.lang.IllegalArgumentException - a and b are not conformable
java.lang.UnsupportedOperationException - dont support this data type

copy

public static void copy(Array result,
                        Array a)
                 throws java.lang.IllegalArgumentException
copy array a to array result, the result array will be in canonical order The operation type is taken from the type of a.

Throws:
java.lang.IllegalArgumentException - a and b are not conformable
java.lang.UnsupportedOperationException - dont support this data type yet

copyDouble

public static void copyDouble(Array result,
                              Array a)
                       throws java.lang.IllegalArgumentException
copy array a to array result as doubles The values from the arrays a are converted to double (if needed), and then converted to the type of result (if needed).

Throws:
java.lang.IllegalArgumentException - a and result are not conformable

copyFloat

public static void copyFloat(Array result,
                             Array a)
                      throws java.lang.IllegalArgumentException
copy array a to array result as floats The values from the arrays a are converted to float (if needed), and then converted to the type of result (if needed).

Throws:
java.lang.IllegalArgumentException - a and result are not conformable

copyLong

public static void copyLong(Array result,
                            Array a)
                     throws java.lang.IllegalArgumentException
copy array a to array result as longs The values from the array a are converted to long (if needed), and then converted to the type of result (if needed).

Throws:
java.lang.IllegalArgumentException - a and result are not conformable

copyInt

public static void copyInt(Array result,
                           Array a)
                    throws java.lang.IllegalArgumentException
copy array a to array result as integers The values from the arrays a are converted to integer (if needed), and then converted to the type of result (if needed).

Throws:
java.lang.IllegalArgumentException - a and result are not conformable

copyShort

public static void copyShort(Array result,
                             Array a)
                      throws java.lang.IllegalArgumentException
copy array a to array result as shorts The values from the array a are converted to short (if needed), and then converted to the type of result (if needed).

Throws:
java.lang.IllegalArgumentException - a and result are not conformable

copyChar

public static void copyChar(Array result,
                            Array a)
                     throws java.lang.IllegalArgumentException
copy array a to array result as char The values from the array a are converted to char (if needed), and then converted to the type of result (if needed).

Throws:
java.lang.IllegalArgumentException - a and result are not conformable

copyByte

public static void copyByte(Array result,
                            Array a)
                     throws java.lang.IllegalArgumentException
copy array a to array result as bytes The values from the array a are converted to byte (if needed), and then converted to the type of result (if needed).

Throws:
java.lang.IllegalArgumentException - a and result are not conformable

copyBoolean

public static void copyBoolean(Array result,
                               Array a)
                        throws java.lang.IllegalArgumentException
copy array a to array result as bytes The array a and result must be type boolean

Throws:
java.lang.IllegalArgumentException - a and result are not conformable

copyObject

public static void copyObject(Array result,
                              Array a)
                       throws java.lang.IllegalArgumentException
copy array a to array result as an Object The array a and result must be type object

Throws:
java.lang.IllegalArgumentException - a and result are not conformable

reducedRank

public static int reducedRank(int[] shape)
Calculate the reduced rank of this shape, by subtracting dimensions with length 1


getMinimum

public static double getMinimum(Array a)

getMaximum

public static double getMaximum(Array a)

getMinMax

public static MAMath.MinMax getMinMax(Array a)
Find min and max value in this array, getting values as doubles. Skip Double.NaN.

Parameters:
a - the array.
Returns:
MinMax

getMinimumSkipMissingData

public static double getMinimumSkipMissingData(Array a,
                                               double missingValue)

getMaximumSkipMissingData

public static double getMaximumSkipMissingData(Array a,
                                               double missingValue)

getMinMaxSkipMissingData

public static MAMath.MinMax getMinMaxSkipMissingData(Array a,
                                                     double missingValue)

setDouble

public static void setDouble(Array result,
                             double val)
Set all the elements of this array to the given double value. The value is converted to the element type of the array, if needed.


sumDouble

public static double sumDouble(Array a)
sum all of the elements of array a as doubles. The values from the array a are converted to double (if needed).


sumDoubleSkipMissingData

public static double sumDoubleSkipMissingData(Array a,
                                              double missingValue)
sum all of the elements of array a as doubles. The values from the array a are converted to double (if needed).