All Packages Class Hierarchy This Package Previous Next Index
Class com.ibm.math.array.intArray0D
java.lang.Object
|
+----com.ibm.math.array.Array
|
+----com.ibm.math.array.intArray
|
+----com.ibm.math.array.intArray0D
- public final class intArray0D
- extends intArray
intArray0D = 0-dimensional array of ints
The intArray0D concrete class implements 0-dimensional arrays
of ints. 0-dimensional arrays can either be instantiated directly
through constructors, or they can begenerated by extracting sections
from other 0- or higher-dimensional arrays.
-
intArray0D()
- Create a 0-dimensional array of a certain shape.
-
intArray0D(int)
- Create a 0-dimensional array, with shape and values defined by
a Java int.
-
intArray0D(intArray0D)
- Create a new 0-dimensional array as a copy of a given
intArray0D
-
assign(int)
- Assign a scalar value to all elements of the array.
-
assign(intArray0D)
- Assign the values from another 0-dimensional array to this array.
-
div(int)
- Each array element is divided by a scalar and the data
computed is returned in a new array
-
div(int, intArray0D)
- Each array element is divided by a scalar and the data
computed is returned in the result array parameter
-
div(intArray0D)
- Divides each array element by the corresponding array element and return the data
computed in a new array
-
div(intArray0D, intArray0D)
- Divides each array element by the corresponding array element and return the data
computed in the result array parameter
-
divAssign(int)
- div combined with assignment to this array
-
divAssign(intArray0D)
- div combined with assignment to this array
-
equals(int)
- Computes, element by element, the result of the comparison:
element of this array equals to scalar
and return all the results in a new booleanArray0D of the
same shape as this array.
-
equals(int, booleanArray0D)
- Computes, element by element, the result of the comparison:
element of this array equals to scalar
and return all the results in the result array.
-
equals(intArray0D)
- Computes, element by element, the result of the comparison:
element of this array equals to parameter array (arrayin) element
and return all the results in a new booleanArray0D of the
same shape as both arrays.
-
equals(intArray0D, booleanArray0D)
- Computes, element by element, the result of the comparison:
element of this array equals to parameter array (arrayin) element
and return all the results in the result array.
-
get()
- Return the value of an element of the array.
-
get(int[])
- Return the value of an element of the array.
-
greater(int)
- Computes, element by element, the result of the comparison:
element of this array greater than scalar
and return all the results in a new booleanArray0D of the
same shape as this array.
-
greater(int, booleanArray0D)
- Computes, element by element, the result of the comparison:
element of this array greater than scalar
and return all the results in the result array.
-
greater(intArray0D)
- Computes, element by element, the result of the comparison:
element of this array greater than parameter array (arrayin) element
and return all the results in a new booleanArray0D of the
same shape as both arrays.
-
greater(intArray0D, booleanArray0D)
- Computes, element by element, the result of the comparison:
element of this array greater than parameter array (arrayin) element
and return all the results in the result array.
-
greaterEquals(int)
- Computes, element by element, the result of the comparison:
element of this array greater than or equals to scalar
and return all the results in a new booleanArray0D of the
same shape as this array.
-
greaterEquals(int, booleanArray0D)
- Computes, element by element, the result of the comparison:
element of this array greater than or equals to scalar
and return all the results in the result array.
-
greaterEquals(intArray0D)
- Computes, element by element, the result of the comparison:
element of this array greater than or equals to parameter array (arrayin) element
and return all the results in a new booleanArray0D of the
same shape as both arrays.
-
greaterEquals(intArray0D, booleanArray0D)
- Computes, element by element, the result of the comparison:
element of this array greater than or equals to parameter array (arrayin) element
and return all the results in the result array.
-
last(int)
- Return the index of the last element along its i-th axis.
-
less(int)
- Computes, element by element, the result of the comparison:
element of this array less than scalar
and return all the results in a new booleanArray0D of the
same shape as this array.
-
less(int, booleanArray0D)
- Computes, element by element, the result of the comparison:
element of this array less than scalar
and return all the results in the result array.
-
less(intArray0D)
- Computes, element by element, the result of the comparison:
element of this array less than parameter array (arrayin) element
and return all the results in a new booleanArray0D of the
same shape as both arrays.
-
less(intArray0D, booleanArray0D)
- Computes, element by element, the result of the comparison:
element of this array less than parameter array (arrayin) element
and return all the results in the result array.
-
lessEquals(int)
- Computes, element by element, the result of the comparison:
element of this array less than or equals to scalar
and return all the results in a new booleanArray0D of the
same shape as this array.
-
lessEquals(int, booleanArray0D)
- Computes, element by element, the result of the comparison:
element of this array less than or equals to scalar
and return all the results in the result array.
-
lessEquals(intArray0D)
- Computes, element by element, the result of the comparison:
element of this array less than or equals to parameter array (arrayin) element
and return all the results in a new booleanArray0D of the
same shape as both arrays.
-
lessEquals(intArray0D, booleanArray0D)
- Computes, element by element, the result of the comparison:
element of this array less than or equals to parameter array (arrayin) element
and return all the results in the result array.
-
minus(int)
- Subtracts a scalar from each array element and return the data
computed in a new array
-
minus(int, intArray0D)
- Subtracts a scalar from each array element and return the data
computed in the result array parameter
-
minus(intArray0D)
- Subtracts the corresponding array element from each array element and return the data
computed in a new array
-
minus(intArray0D, intArray0D)
- Subtracts the corresponding array element from each array element and return the data
computed in the result array parameter
-
minusAssign(int)
- minus combined with assignment to this array
-
minusAssign(intArray0D)
- minus combined with assignment to this array
-
permuteAxes()
- Permute the axes of this array, thus creating a reference
to its (generic) transpose.
-
permuteAxes(int[])
- Permute the axes of this array, thus creating a reference
to its (generic) transpose.
-
plus(int)
- Adds a scalar to each array element and return the data
computed in a new array
-
plus(int, intArray0D)
- Adds a scalar to each array element and return the data
computed in the result array parameter
-
plus(intArray0D)
- Adds the corresponding array element to each array element and return the data
computed in a new array
-
plus(intArray0D, intArray0D)
- Adds the corresponding array element to each array element and return the data
computed in the result array parameter
-
plusAssign(int)
- plus combined with assignment to this array
-
plusAssign(intArray0D)
- plus combined with assignment to this array
-
rank()
- Return the rank of the 0-dimensional array, 0.
-
rem(int)
- Each array element is divided by a scalar and the remaining of
the integer division computed is returned in a new array
-
rem(int, intArray0D)
- Each array element is divided by a scalar and the remaining of
the integer division computed is returned in the result array parameter
-
rem(intArray0D)
- Each array element is divided by a scalar and the remaining of
the integer division computed is returned in a new array
-
rem(intArray0D, intArray0D)
- Each array element is divided by a scalar and the remaining of
the integer division computed is returned in the result array parameter
-
remAssign(int)
- rem combined with assignment to this array
-
remAssign(intArray0D)
- rem combined with assignment to this array
-
reshape()
- This method reshapes this array into an array with
rank 0, each parameter gives the size
in each array dimension, the array returned has a copy
of the data from this array, it does not share data
with this array
-
reshape(int)
- This method reshapes this array into an array with
rank 1, each parameter gives the size
in each array dimension, the array returned has a copy
of the data from this array, it does not share data
with this array
-
reshape(int, int)
- This method reshapes this array into an array with
rank 2, each parameter gives the size
in each array dimension, the array returned has a copy
of the data from this array, it does not share data
with this array
-
reshape(int, int, int)
- This method reshapes this array into an array with
rank 3, each parameter gives the size
in each array dimension, the array returned has a copy
of the data from this array, it does not share data
with this array
-
reshape(int[])
- This method is the implementation of the Array interface
reshape that simply call the apropriate version of reshape
given the target rank.
-
section()
- Extract a 0-dimensional section from the array.
-
set(int)
- Set the value of an element of the array.
-
set(int[], int)
- Set the value of an element of the array.
-
shape()
- Return the shape of the array as an int[] I of length 0.
-
size()
- Return the number of elements in the array.
-
size(int)
- Return the extent of the array along its i-th axis.
-
times(int)
- Each array element is multiplied by the scalar parameter and the data
computed is returned in a new array
-
times(int, intArray0D)
- Each array element is multiplied by scalar and the data computed
is returned in result array parameter
-
times(intArray0D)
- Multiplies each array element by its corresponding array element and return the data
computed in a new array
-
times(intArray0D, intArray0D)
- Multiplies each array element by its corresponding array element and return the data
computed in the result array parameter
-
timesAssign(int)
- times combined with assignment to this array
-
timesAssign(intArray0D)
- times combined with assignment to this array
-
toJava()
- Transforms this intArray0D to a int.
-
unequals(int)
- Computes, element by element, the result of the comparison:
element of this array not equals to scalar
and return all the results in a new booleanArray0D of the
same shape as this array.
-
unequals(int, booleanArray0D)
- Computes, element by element, the result of the comparison:
element of this array not equals to scalar
and return all the results in the result array.
-
unequals(intArray0D)
- Computes, element by element, the result of the comparison:
element of this array not equals to parameter array (arrayin) element
and return all the results in a new booleanArray0D of the
same shape as both arrays.
-
unequals(intArray0D, booleanArray0D)
- Computes, element by element, the result of the comparison:
element of this array not equals to parameter array (arrayin) element
and return all the results in the result array.
intArray0D
public intArray0D() throws InvalidArrayShapeException
- Create a 0-dimensional array of a certain shape.
Elements are 0-valued
- Throws: InvalidArrayShapeException
- all extents must be nonnegative
intArray0D
public intArray0D(intArray0D arrayin)
- Create a new 0-dimensional array as a copy of a given
intArray0D
- Parameters:
- arrayin - Array to copy
intArray0D
public intArray0D(int datain) throws InvalidArrayShapeException
- Create a 0-dimensional array, with shape and values defined by
a Java int.
- Parameters:
- datain - Java int defining shape and values of the array
- Throws: InvalidArrayShapeException
- The Java array must be rectangular
assign
public void assign(int value)
- Assign a scalar value to all elements of the array.
- Parameters:
- d - value to be assigned
assign
public void assign(intArray0D arrayin) throws NonconformingArrayException
- Assign the values from another 0-dimensional array to this array.
- Parameters:
- a - array with source values
- Throws: NonconformingArrayException
- arrays must be of same shape
rank
public int rank()
- Return the rank of the 0-dimensional array, 0.
- Overrides:
- rank in class Array
shape
public int[] shape()
- Return the shape of the array as an int[] I of length 0.
- Overrides:
- shape in class Array
size
public int size()
- Return the number of elements in the array.
- Returns:
- the total number of elements
- Overrides:
- size in class Array
size
public int size(int i) throws InvalidArrayAxisException
- Return the extent of the array along its i-th axis.
- Parameters:
- i - array axis (0 <= i < rank())
- Returns:
- the number of elements along axis i
- Throws: InvalidArrayAxisException
- i must be between 0 and -1
- Overrides:
- size in class Array
last
public int last(int i) throws InvalidArrayAxisException
- Return the index of the last element along its i-th axis.
the value returned is simply size(i)-1, but is convenient
to have such a method because last(i) is more readable than
size(i)-1.
- Parameters:
- i - array axis (0 <= i < rank())
- Returns:
- the index of the last element along axis i
- Throws: InvalidArrayAxisException
- i must be between 0 and -1
- Overrides:
- last in class Array
permuteAxes
public Array permuteAxes(int permarray[]) throws InvalidArrayAxisException
- Permute the axes of this array, thus creating a reference
to its (generic) transpose.
- Parameters:
- array - an array indicating the permutation to be done.
ex: for a 2D array array2D.PermuteAxis({1,0});
would permute the array, but array2D.PermuteAxis({0,1});
returns the same array
- Throws: InvalidArrayAxisException
- 0 <= a0,a1 <= 1
- Overrides:
- permuteAxes in class Array
permuteAxes
public intArray0D permuteAxes() throws InvalidArrayAxisException
- Permute the axes of this array, thus creating a reference
to its (generic) transpose.
- Throws: InvalidArrayAxisException
- Axes must be in valid range and all different
reshape
public Array reshape(int size[]) throws NonconformingArrayException
- This method is the implementation of the Array interface
reshape that simply call the apropriate version of reshape
given the target rank.
- Parameters:
- size - size[i] is the extent of the result array along the i axis.
- Throws: NonconformingArrayException
- The size of the resulting array
must be compatible with this array, and in the range of ranks supported
by this implementation.
- Overrides:
- reshape in class Array
reshape
public intArray0D reshape() throws NonconformingArrayException
- This method reshapes this array into an array with
rank 0, each parameter gives the size
in each array dimension, the array returned has a copy
of the data from this array, it does not share data
with this array
- Throws: NonconformingArrayException
- the product of all parameters
must be equal to size of this array
reshape
public intArray1D reshape(int size0) throws NonconformingArrayException
- This method reshapes this array into an array with
rank 1, each parameter gives the size
in each array dimension, the array returned has a copy
of the data from this array, it does not share data
with this array
- Parameters:
- size0: - extent of resulting array along axis #0
- Throws: NonconformingArrayException
- the product of all parameters
must be equal to size of this array
reshape
public intArray2D reshape(int size0,
int size1) throws NonconformingArrayException
- This method reshapes this array into an array with
rank 2, each parameter gives the size
in each array dimension, the array returned has a copy
of the data from this array, it does not share data
with this array
- Parameters:
- size0: - extent of resulting array along axis #0
- size1: - extent of resulting array along axis #1
- Throws: NonconformingArrayException
- the product of all parameters
must be equal to size of this array
reshape
public intArray3D reshape(int size0,
int size1,
int size2) throws NonconformingArrayException
- This method reshapes this array into an array with
rank 3, each parameter gives the size
in each array dimension, the array returned has a copy
of the data from this array, it does not share data
with this array
- Parameters:
- size0: - extent of resulting array along axis #0
- size1: - extent of resulting array along axis #1
- size2: - extent of resulting array along axis #2
- Throws: NonconformingArrayException
- the product of all parameters
must be equal to size of this array
section
public intArray0D section() throws ArrayIndexOutOfBoundsException
- Extract a 0-dimensional section from the array.
- Throws: ArrayIndexOutOfBoundsException
- indices must be valid
get
public int get(int index[]) throws InvalidArrayIndexException, ArrayIndexOutOfBoundsException
- Return the value of an element of the array.
- Parameters:
- index, - index[i] = index along i-th axis, 0 <= index[i] < size(i)
- Throws: InvalidArrayIndexException
- index[] must be of length 0
- Overrides:
- get in class intArray
get
public int get() throws ArrayIndexOutOfBoundsException
- Return the value of an element of the array.
set
public void set(int index[],
int d) throws InvalidArrayIndexException, ArrayIndexOutOfBoundsException
- Set the value of an element of the array.
- Parameters:
- index - index[i] = index along i-th axis, 0 <= index[i] < size(i)
- d - value to which element is set
- Throws: InvalidArrayIndexException
- index[] must be of length 0
- Overrides:
- set in class intArray
set
public void set(int val) throws ArrayIndexOutOfBoundsException
- Set the value of an element of the array.
- Parameters:
- val - value to which element is set
plus
public void plus(int scalar,
intArray0D result) throws NonconformingArrayException
- Adds a scalar to each array element and return the data
computed in the result array parameter
- Parameters:
- scalar - int to be added to each array element
- result - intArray0D Object that will store the result
- Throws: NonconformingArrayException
- shapes must match
plus
public intArray0D plus(int scalar)
- Adds a scalar to each array element and return the data
computed in a new array
- Parameters:
- scalar - int to be added to each array element
plus
public void plus(intArray0D arrayin,
intArray0D result) throws NonconformingArrayException
- Adds the corresponding array element to each array element and return the data
computed in the result array parameter
- Parameters:
- arrayin - intArray0D to be added element by element
- result - intArray0D Object that will store the result
- Throws: NonconformingArrayException
- shapes must match
plus
public intArray0D plus(intArray0D array) throws NonconformingArrayException
- Adds the corresponding array element to each array element and return the data
computed in a new array
- Parameters:
- array - intArray0D to be added element by element
- Throws: NonconformingArrayException
- shapes must match
plusAssign
public intArray0D plusAssign(int scalar)
- plus combined with assignment to this array
- Parameters:
- scalar - The second source operand
plusAssign
public intArray0D plusAssign(intArray0D array) throws NonconformingArrayException
- plus combined with assignment to this array
- Parameters:
- array - The second source operand
- Throws: NonconformingArrayException
- shapes must match
minus
public void minus(int scalar,
intArray0D result) throws NonconformingArrayException
- Subtracts a scalar from each array element and return the data
computed in the result array parameter
@param scalar int to be subtracted from each array element
- Parameters:
- result - intArray0D Object that will store the result
- Throws: NonconformingArrayException
- shapes must match
minus
public intArray0D minus(int scalar)
- Subtracts a scalar from each array element and return the data
computed in a new array
- Parameters:
- scalar - int to be subtracted from each array element
- Throws: NonconformingArrayException
- shapes must match
minus
public void minus(intArray0D arrayin,
intArray0D result) throws NonconformingArrayException
- Subtracts the corresponding array element from each array element and return the data
computed in the result array parameter
- Parameters:
- arrayin - intArray0D to be subtracted element by element
- result - intArray0D Object that will store the result
- Throws: NonconformingArrayException
- shapes must match
minus
public intArray0D minus(intArray0D array) throws NonconformingArrayException
- Subtracts the corresponding array element from each array element and return the data
computed in a new array
- Parameters:
- array - intArray0D to be added element by element
- Throws: NonconformingArrayException
- shapes must match
minusAssign
public intArray0D minusAssign(int scalar)
- minus combined with assignment to this array
- Parameters:
- scalar - The second source operand
minusAssign
public intArray0D minusAssign(intArray0D array) throws NonconformingArrayException
- minus combined with assignment to this array
- Parameters:
- array - The second source operand
- Throws: NonconformingArrayException
- shapes must match
times
public void times(int scalar,
intArray0D result) throws NonconformingArrayException
- Each array element is multiplied by scalar and the data computed
is returned in result array parameter
- Parameters:
- scalar - each array element is multiplied by this int value
- result - intArray0D Object that will store the result
- Throws: NonconformingArrayException
- shapes must match
times
public intArray0D times(int scalar)
- Each array element is multiplied by the scalar parameter and the data
computed is returned in a new array
- Parameters:
- scalar - each array element is multiplied by this int value
times
public void times(intArray0D arrayin,
intArray0D result) throws NonconformingArrayException
- Multiplies each array element by its corresponding array element and return the data
computed in the result array parameter
- Parameters:
- arrayin - intArray0D to be multiplied element by element
- result - intArray0D Object that will store the result
- Throws: NonconformingArrayException
- shapes must match
times
public intArray0D times(intArray0D array) throws NonconformingArrayException
- Multiplies each array element by its corresponding array element and return the data
computed in a new array
- Parameters:
- array - intArray0D to be added element by element
- Throws: NonconformingArrayException
- shapes must match
timesAssign
public intArray0D timesAssign(int scalar)
- times combined with assignment to this array
- Parameters:
- scalar - The second source operand
timesAssign
public intArray0D timesAssign(intArray0D array) throws NonconformingArrayException
- times combined with assignment to this array
- Parameters:
- array - The second source operand
- Throws: NonconformingArrayException
- shapes must match
div
public void div(int scalar,
intArray0D result) throws NonconformingArrayException
- Each array element is divided by a scalar and the data
computed is returned in the result array parameter
- Parameters:
- scalar - Each array element is divided by this int
- result - intArray0D Object that will store the result
- Throws: NonconformingArrayException
- shapes must match
div
public intArray0D div(int scalar)
- Each array element is divided by a scalar and the data
computed is returned in a new array
- Parameters:
- scalar - Each array element is divided by this int
- Throws: NonconformingArrayException
- shapes must match
div
public void div(intArray0D arrayin,
intArray0D result) throws NonconformingArrayException
- Divides each array element by the corresponding array element and return the data
computed in the result array parameter
- Parameters:
- arrayin - the intArray0D containing the divisors
- result - intArray0D Object that will store the result
- Throws: NonconformingArrayException
- shapes must match
div
public intArray0D div(intArray0D array) throws NonconformingArrayException
- Divides each array element by the corresponding array element and return the data
computed in a new array
- Parameters:
- array - the intArray0D containing the divisors
- Throws: NonconformingArrayException
- shapes must match
divAssign
public intArray0D divAssign(int scalar)
- div combined with assignment to this array
- Parameters:
- scalar - The second source operand
divAssign
public intArray0D divAssign(intArray0D array) throws NonconformingArrayException
- div combined with assignment to this array
- Parameters:
- array - The second source operand
- Throws: NonconformingArrayException
- shapes must match
rem
public void rem(int scalar,
intArray0D result) throws NonconformingArrayException
- Each array element is divided by a scalar and the remaining of
the integer division computed is returned in the result array parameter
- Parameters:
- scalar - The remaing operation second operand
- result - intArray0D Object that will store the result
- Throws: NonconformingArrayException
- shapes must match
rem
public intArray0D rem(int scalar)
- Each array element is divided by a scalar and the remaining of
the integer division computed is returned in a new array
- Parameters:
- scalar - The remaing operation second operand
- Throws: NonconformingArrayException
- shapes must match
rem
public void rem(intArray0D arrayin,
intArray0D result) throws NonconformingArrayException
- Each array element is divided by a scalar and the remaining of
the integer division computed is returned in the result array parameter
- Parameters:
- arrayin - the intArray0D containing the divisors
- result - intArray0D Object that will store the result
- Throws: NonconformingArrayException
- shapes must match
rem
public intArray0D rem(intArray0D array) throws NonconformingArrayException
- Each array element is divided by a scalar and the remaining of
the integer division computed is returned in a new array
- Parameters:
- array - the intArray0D containing the divisors
- Throws: NonconformingArrayException
- shapes must match
remAssign
public intArray0D remAssign(int scalar)
- rem combined with assignment to this array
- Parameters:
- scalar - The second source operand
remAssign
public intArray0D remAssign(intArray0D array) throws NonconformingArrayException
- rem combined with assignment to this array
- Parameters:
- array - The second source operand
- Throws: NonconformingArrayException
- shapes must match
equals
public booleanArray0D equals(int scalar)
- Computes, element by element, the result of the comparison:
element of this array equals to scalar
and return all the results in a new booleanArray0D of the
same shape as this array.
- Parameters:
- scalar - scalar to compare element by element with this array
equals
public void equals(int scalar,
booleanArray0D result) throws NonconformingArrayException
- Computes, element by element, the result of the comparison:
element of this array equals to scalar
and return all the results in the result array.
- Parameters:
- scalar - scalar to compare element by element with this array
- result - boolean array to store the result of the comparison
- Throws: NonconformingArrayException
- shapes must match.
equals
public booleanArray0D equals(intArray0D arrayin) throws NonconformingArrayException
- Computes, element by element, the result of the comparison:
element of this array equals to parameter array (arrayin) element
and return all the results in a new booleanArray0D of the
same shape as both arrays.
- Parameters:
- arrayin - Array to compare element by element with this array
- Throws: NonconformingArrayException
- Shapes must match.
equals
public void equals(intArray0D arrayin,
booleanArray0D result) throws NonconformingArrayException
- Computes, element by element, the result of the comparison:
element of this array equals to parameter array (arrayin) element
and return all the results in the result array.
- Parameters:
- arrayin - Array to compare element by element with this array
- result - Boolean array to store the result of the comparison
- Throws: NonconformingArrayException
- Shapes must match.
unequals
public booleanArray0D unequals(int scalar)
- Computes, element by element, the result of the comparison:
element of this array not equals to scalar
and return all the results in a new booleanArray0D of the
same shape as this array.
- Parameters:
- scalar - scalar to compare element by element with this array
unequals
public void unequals(int scalar,
booleanArray0D result) throws NonconformingArrayException
- Computes, element by element, the result of the comparison:
element of this array not equals to scalar
and return all the results in the result array.
- Parameters:
- scalar - scalar to compare element by element with this array
- result - boolean array to store the result of the comparison
- Throws: NonconformingArrayException
- shapes must match.
unequals
public booleanArray0D unequals(intArray0D arrayin) throws NonconformingArrayException
- Computes, element by element, the result of the comparison:
element of this array not equals to parameter array (arrayin) element
and return all the results in a new booleanArray0D of the
same shape as both arrays.
- Parameters:
- arrayin - Array to compare element by element with this array
- Throws: NonconformingArrayException
- Shapes must match.
unequals
public void unequals(intArray0D arrayin,
booleanArray0D result) throws NonconformingArrayException
- Computes, element by element, the result of the comparison:
element of this array not equals to parameter array (arrayin) element
and return all the results in the result array.
- Parameters:
- arrayin - Array to compare element by element with this array
- result - Boolean array to store the result of the comparison
- Throws: NonconformingArrayException
- Shapes must match.
greater
public booleanArray0D greater(int scalar)
- Computes, element by element, the result of the comparison:
element of this array greater than scalar
and return all the results in a new booleanArray0D of the
same shape as this array.
- Parameters:
- scalar - scalar to compare element by element with this array
greater
public void greater(int scalar,
booleanArray0D result) throws NonconformingArrayException
- Computes, element by element, the result of the comparison:
element of this array greater than scalar
and return all the results in the result array.
- Parameters:
- scalar - scalar to compare element by element with this array
- result - boolean array to store the result of the comparison
- Throws: NonconformingArrayException
- shapes must match.
greater
public booleanArray0D greater(intArray0D arrayin) throws NonconformingArrayException
- Computes, element by element, the result of the comparison:
element of this array greater than parameter array (arrayin) element
and return all the results in a new booleanArray0D of the
same shape as both arrays.
- Parameters:
- arrayin - Array to compare element by element with this array
- Throws: NonconformingArrayException
- Shapes must match.
greater
public void greater(intArray0D arrayin,
booleanArray0D result) throws NonconformingArrayException
- Computes, element by element, the result of the comparison:
element of this array greater than parameter array (arrayin) element
and return all the results in the result array.
- Parameters:
- arrayin - Array to compare element by element with this array
- result - Boolean array to store the result of the comparison
- Throws: NonconformingArrayException
- Shapes must match.
greaterEquals
public booleanArray0D greaterEquals(int scalar)
- Computes, element by element, the result of the comparison:
element of this array greater than or equals to scalar
and return all the results in a new booleanArray0D of the
same shape as this array.
- Parameters:
- scalar - scalar to compare element by element with this array
greaterEquals
public void greaterEquals(int scalar,
booleanArray0D result) throws NonconformingArrayException
- Computes, element by element, the result of the comparison:
element of this array greater than or equals to scalar
and return all the results in the result array.
- Parameters:
- scalar - scalar to compare element by element with this array
- result - boolean array to store the result of the comparison
- Throws: NonconformingArrayException
- shapes must match.
greaterEquals
public booleanArray0D greaterEquals(intArray0D arrayin) throws NonconformingArrayException
- Computes, element by element, the result of the comparison:
element of this array greater than or equals to parameter array (arrayin) element
and return all the results in a new booleanArray0D of the
same shape as both arrays.
- Parameters:
- arrayin - Array to compare element by element with this array
- Throws: NonconformingArrayException
- Shapes must match.
greaterEquals
public void greaterEquals(intArray0D arrayin,
booleanArray0D result) throws NonconformingArrayException
- Computes, element by element, the result of the comparison:
element of this array greater than or equals to parameter array (arrayin) element
and return all the results in the result array.
- Parameters:
- arrayin - Array to compare element by element with this array
- result - Boolean array to store the result of the comparison
- Throws: NonconformingArrayException
- Shapes must match.
less
public booleanArray0D less(int scalar)
- Computes, element by element, the result of the comparison:
element of this array less than scalar
and return all the results in a new booleanArray0D of the
same shape as this array.
- Parameters:
- scalar - scalar to compare element by element with this array
less
public void less(int scalar,
booleanArray0D result) throws NonconformingArrayException
- Computes, element by element, the result of the comparison:
element of this array less than scalar
and return all the results in the result array.
- Parameters:
- scalar - scalar to compare element by element with this array
- result - boolean array to store the result of the comparison
- Throws: NonconformingArrayException
- shapes must match.
less
public booleanArray0D less(intArray0D arrayin) throws NonconformingArrayException
- Computes, element by element, the result of the comparison:
element of this array less than parameter array (arrayin) element
and return all the results in a new booleanArray0D of the
same shape as both arrays.
- Parameters:
- arrayin - Array to compare element by element with this array
- Throws: NonconformingArrayException
- Shapes must match.
less
public void less(intArray0D arrayin,
booleanArray0D result) throws NonconformingArrayException
- Computes, element by element, the result of the comparison:
element of this array less than parameter array (arrayin) element
and return all the results in the result array.
- Parameters:
- arrayin - Array to compare element by element with this array
- result - Boolean array to store the result of the comparison
- Throws: NonconformingArrayException
- Shapes must match.
lessEquals
public booleanArray0D lessEquals(int scalar)
- Computes, element by element, the result of the comparison:
element of this array less than or equals to scalar
and return all the results in a new booleanArray0D of the
same shape as this array.
- Parameters:
- scalar - scalar to compare element by element with this array
lessEquals
public void lessEquals(int scalar,
booleanArray0D result) throws NonconformingArrayException
- Computes, element by element, the result of the comparison:
element of this array less than or equals to scalar
and return all the results in the result array.
- Parameters:
- scalar - scalar to compare element by element with this array
- result - boolean array to store the result of the comparison
- Throws: NonconformingArrayException
- shapes must match.
lessEquals
public booleanArray0D lessEquals(intArray0D arrayin) throws NonconformingArrayException
- Computes, element by element, the result of the comparison:
element of this array less than or equals to parameter array (arrayin) element
and return all the results in a new booleanArray0D of the
same shape as both arrays.
- Parameters:
- arrayin - Array to compare element by element with this array
- Throws: NonconformingArrayException
- Shapes must match.
lessEquals
public void lessEquals(intArray0D arrayin,
booleanArray0D result) throws NonconformingArrayException
- Computes, element by element, the result of the comparison:
element of this array less than or equals to parameter array (arrayin) element
and return all the results in the result array.
- Parameters:
- arrayin - Array to compare element by element with this array
- result - Boolean array to store the result of the comparison
- Throws: NonconformingArrayException
- Shapes must match.
toJava
public int toJava()
- Transforms this intArray0D to a int.
All Packages Class Hierarchy This Package Previous Next Index