ComplexDoubleRTable.copyImaginary
create and return a copy of the imaginary values of the current ComplexDoubleRTable
Calling Sequence
Description
Examples
ComplexDoubleRTable copyImaginary( ) throws MapleException
The copyImaginary function creates and returns a new ComplexDoubleRTable that contains the imaginary components of each element of the current ComplexDoubleRTable.
As RTables do not have unique representations, the returned copy is a different Maple object from the original. Therefore changes to the copy do not affect the original.
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 );
ComplexDoubleRTable 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]):" );
System.out.println( a1 );
ComplexDoubleRTable iCopy = a1.copyImaginary();
System.out.println( iCopy );
int[] index = new int[2];
index[0] = 1;
index[1] = 1;
iCopy.assign( index, 10.0, 10.0 );
}
Executing this code produces the following output.
Array(1..2, 1..2,
[[.100000000000000004+0.*I,.200000000000000010+0.*I],[.299999999999999988+.299999999999999988*I,.400000000000000022+.400000000000000022*I]],
datatype = complex[8], storage = rectangular, order = Fortran_order)
[[0.+0.*I,0.+0.*I],[.299999999999999988+0.*I,.400000000000000022+0.*I]],
[[10.+10.*I,0.+0.*I],[.299999999999999988+0.*I,.400000000000000022+0.*I]],
See Also
ExternalCalling/Java/MapleException
OpenMaple
OpenMaple/Java/API
OpenMaple/Java/ComplexDoubleRTable
OpenMaple/Java/ComplexDoubleRTable/copyReal
OpenMaple/Java/RTable/copy
Download Help Document