User`s guide
Using Class Methods
Use either of the following prototypes for the getDouble method, where index
can be of type int or int[]:
public double getDouble(int index)
public double getDouble(int[] index)
getFloat. This method returns the real part of the MWNumericArray element
located at the specified one-based index or index array. The return value
is given type
float.
Use either of the following prototypes for the
getFloat method, where index
can be of type int or int[]:
public float getFloat(int index)
public float getFloat(int[] index)
getLong. This method returns the real part of the MWNumericArray element
located at the specified one-based index or index array. The return value is
given type
long.
Use either of the following prototypes for the
getLong method, where index
can be of type int or int[]:
public long getLong(int index)
public long getLong(int[] index)
getInt. This method returns the real part of the MWNumericArray element
located at the specified one-based index or index array. The return value is
given type
int.
Use either of the following prototypes for the
getInt method, where index
can be of type int or int[]:
public int getInt(int index)
public int getInt(int[] index)
getShort. This method returns the real part of the MWNumericArray element
located at the specified one-based index or index array. The return value
is given type
short.
4-77