User`s guide
Using Class Methods
get. This method returns the element located at the specified one-based offset
or index array in the array object. The e lem ent is returned as an
Object.
To get the element at a specific index, use one of the following:
public Object get(int index)
public Object get(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 MWArray
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
MWArray object. The valid range for any
index is
1 <= index[i] <= N[i],whereN[i] is the size of the ith dimension.
Exceptions
The get method throws the following exception:
IndexOutOfBoundsException
The specified index parameter is invalid.
4-45