ShortRTable.assign - assign a short into an element of the ShortRTable
|
Calling Sequence
|
|
void assign( int index[], short val ) throws MapleException
|
|
Parameters
|
|
index
|
-
|
index of the entry to assign
|
val
|
-
|
value to assign to the list
|
|
|
|
|
Description
|
|
•
|
The assign function assigns the Java short val into the element of the ShortRTable indexed by index.
|
•
|
The index parameter is an array of integers, one for each dimension of the ShortRTable. Each integer must be within the bounds determined by lowerBound and upperBound. The index for dimension is stored in the array at position .
|
•
|
As RTables do not have unique representations, elements of an RTable can be assigned to at any time.
|
|
|
Examples
|
|
import com.maplesoft.openmaple.*;
|
import com.maplesoft.externalcall.MapleException;
|
class Example
|
{
|
public static void main( String notused[] ) throws MapleException
|
{
|
String mapleArgs[];
|
Engine engine;
|
ShortRTable a1;
|
int index[];
|
short s;
|
mapleArgs = new String[1];
|
mapleArgs[0] = "java";
|
engine = new Engine( mapleArgs, new EngineCallBacksDefault(),
|
null, null );
|
a1 = (ShortRTable)engine.evaluate( "Array( 1..2, 1..2, [[1000,2000],[3000,4000]], datatype=integer[2]):" );
|
index = new int[2];
|
s = 5000;
|
index[0] = 1;
|
index[1] = 1;
|
a1.assign( index, s );
|
s = 6000;
|
index[0] = 2;
|
index[1] = 1;
|
a1.assign( index, s );
|
s = 7000;
|
index[0] = 1;
|
index[1] = 2;
|
a1.assign( index, s );
|
s = 8000;
|
index[0] = 2;
|
index[1] = 2;
|
a1.assign( index, s );
|
System.out.println( a1 );
|
}
|
}
|
|
|
Executing this code produces the following output.
Array(1..2, 1..2, [[5000,7000],[6000,8000]], datatype = integer[2], storage =
|
rectangular, order = Fortran_order)
|
|
|
|
|