NumericRTable.select - access a Numeric stored in the NumericRTable
|
Calling Sequence
|
|
Numeric select( int index[] ) throws MapleException
|
|
Parameters
|
|
index
|
-
|
index of the entry to select
|
|
|
|
|
Description
|
|
•
|
The index parameter is an array of integers, one for each dimension of the NumericRTable. Each integer must be within the bounds determined by lowerBound and upperBound. The index for dimension is stored in the array at position .
|
|
|
Examples
|
|
import com.maplesoft.openmaple.*;
|
import com.maplesoft.externalcall.MapleException;
|
class Example
|
{
|
public static void main( String notused[] ) throws MapleException
|
{
|
String mapleArgs[];
|
Engine engine;
|
NumericRTable a1;
|
int index[];
|
mapleArgs = new String[1];
|
mapleArgs[0] = "java";
|
engine = new Engine( mapleArgs, new EngineCallBacksDefault(),
|
null, null );
|
a1 = (NumericRTable)engine.evaluate( "Array( 1..2, 1..2, [[2^100,2^101],[2^102, 2^103]], datatype=sfloat ):" );
|
index = new int[2];
|
index[0] = 1;
|
index[1] = 1;
|
System.out.println( a1.select( index ) );
|
index[0] = 2;
|
index[1] = 1;
|
System.out.println( a1.select( index ) );
|
index[0] = 1;
|
index[1] = 2;
|
System.out.println( a1.select( index ) );
|
index[0] = 2;
|
index[1] = 2;
|
System.out.println( a1.select( index ) );
|
}
|
}
|
|
|
Executing this code produces the following output.
.1267650600e31
|
.5070602401e31
|
.2535301200e31
|
.1014120480e32
|
|
|
|
|
Download Help Document
Was this information helpful?