LongRTable.select
access a long stored in the LongRTable
Calling Sequence
Parameters
Description
Examples
long select( int index[] ) throws MapleException
index
-
index of the entry to select
The select function returns the Java long indexed by index in the LongRTable
The index parameter is an array of integers, one for each dimension of the LongRTable. Each integer must be within the bounds determined by lowerBound and upperBound. The index for dimension i is stored in the array at position i−1.
import com.maplesoft.openmaple.*;
import com.maplesoft.externalcall.MapleException;
class Example
{
public static void main( String notused[] ) throws MapleException
String[] mapleArgs = { "java" };
Engine engine = new Engine( mapleArgs, new EngineCallBacksDefault(), null, null );
LongRTable a1 = (LongRTable)engine.evaluate( "Array( 1..2, 1..2, [[2^45,2^50],[2^55,2^60]], datatype=integer[8]):" );
int[] index = new int[2];
index[0] = 1;
index[1] = 1;
System.out.println( a1.select( index ) );
index[0] = 2;
index[1] = 2;
}
Executing this code produces the following output.
35184372088832
36028797018963968
1125899906842624
1152921504606846976
See Also
ExternalCalling/Java/MapleException
OpenMaple
OpenMaple/Java/API
OpenMaple/Java/LongRTable
OpenMaple/Java/LongRTable/assign
OpenMaple/Java/RTable
OpenMaple/Java/RTable/lowerBound
OpenMaple/Java/RTable/upperBound
Download Help Document