ComplexNumeric.realPart - return the real component of the ComplexNumeric object
|
Calling Sequence
|
|
Numeric realPart() throws MapleException
|
|
Description
|
|
•
|
The realPart function returns a Numeric object, which represents the real component of the ComplexNumeric.
|
•
|
To access the imaginary component of the ComplexNumeric, use the imaginaryPart method.
|
|
|
Examples
|
|
import com.maplesoft.openmaple.*;
|
import com.maplesoft.externalcall.MapleException;
|
class Example
|
{
|
public static void main( String notused[] ) throws MapleException
|
{
|
String mapleArgs[];
|
Engine engine;
|
ComplexNumeric n1;
|
Numeric re;
|
mapleArgs = new String[1];
|
mapleArgs[0] = "java";
|
engine = new Engine( mapleArgs, new EngineCallBacksDefault(),
|
null, null );
|
n1 = (ComplexNumeric)engine.evaluate( "10+20*I:" );
|
System.out.println( n1 );
|
re = n1.realPart();
|
System.out.println( re );
|
}
|
}
|
|
|
Executing this code produces the following output.
|
|
Download Help Document
Was this information helpful?