import com.maplesoft.openmaple.*;
|
import com.maplesoft.externalcall.MapleException;
|
class Example
|
{
|
public static void main( String notused[] ) throws MapleException
|
{
|
String mapleArgs[];
|
Engine engine;
|
ComplexDoubleRTable a1;
|
int index[];
|
double e;
|
mapleArgs = new String[1];
|
mapleArgs[0] = "java";
|
engine = new Engine( mapleArgs, new EngineCallBacksDefault(),
|
null, null );
|
a1 = (ComplexDoubleRTable)engine.evaluate( "Array( 1..2, 1..2, [[0.1,0.2],[0.3+.3*I,0.4+0.4*I]], datatype=complex[8]):" );
|
index = new int[2];
|
index[0] = 1;
|
index[1] = 1;
|
e = a1.selectReal( index );
|
System.out.println( "Real: "+e );
|
index[0] = 2;
|
index[1] = 1;
|
e = a1.selectReal( index );
|
System.out.println( "Real: "+e );
|
index[0] = 1;
|
index[1] = 2;
|
e = a1.selectReal( index );
|
System.out.println( "Real: "+e );
|
index[0] = 2;
|
index[1] = 2;
|
e = a1.selectReal( index );
|
System.out.println( "Real: "+e );
|
}
|
}
|