User`s guide
Using Class Methods
getBoolean. This method returns the element located at the specified
one-based index of the
MWLogicalArray object.
To get the element at a specific index, use one of the following:
public boolean getBoolean(int index)
public boolean getBoolean(int[] index)
Use the first syntax (int index) to return the ele ment at the specified
one-based offset in the a rray, accessing elements in column-wise order. Us e the
second syntax (
int[] index) to return the element at the specified array of
one-based indices. The first syntax offers better performance than the second.
Input Parameters
index
Index of the requested element in the MWLogicalArray
In the case where index is of type int, the valid range for index is 1<=index
<= N
,whereN is the total number of elements in the array.
Inthecasewhere
index is of type int[],eachelementoftheindex vector
is an index along one dimension of the
MWLogicalArray object. The valid
range for any index is
1 <= index[i] <= N[i],whereN[i] is the size of the
ith dimension.
Exceptions
The getBoolean method throws the following exception:
IndexOutOfBoundsException
The specified index parameter is invalid.
4-101