Im - Maple Help
For the best experience, we recommend viewing online help using Google Chrome or Microsoft Edge.

Online Help

All Products    Maple    MapleSim


Re

return the Real part of a complex-valued expression

Im

return the Imaginary part of a complex-valued expression

 

Calling Sequence

Parameters

Description

Thread Safety

Examples

Calling Sequence

Re(x)

Im(x)

Parameters

x

-

expression

Description

• 

The Re(x) calling sequence attempts to return the real part of x.

  

If x is a real extended numeric, then x is returned. If x is a complex extended numeric, then the real part of x is returned.

• 

The Im(x) function attempts to return the imaginary part of x.

  

If x is a real extended numeric, then 0 is returned. If x is a complex extended numeric, then the imaginary part of x is returned.

  

You can enter the commands Re and Im using their 1-D or 2-D calling sequences. For example, Re(3+4*I) is equivalent to .

• 

If x includes a function f, then Re(x) and Im(x) attempt to execute the procedures `Re/f` and `Im/f` to determine the real and imaginary parts of the corresponding part of x.

  

By this method, the functionality of these commands can be extended. For example, Re(sin(3+4*I)*ln(3+4*I)) executes the procedures `Re/sin`, `Im/sin`, `Re/ln`, and `Im/ln`.

• 

To specify that unknown variables should be assumed to represent real values, use the assume or the evalc command.

Thread Safety

• 

The Re and Im commands are thread-safe as of Maple 15.

• 

For more information on thread safety, see index/threadsafe.

Examples

(1)

(2)

(3)

(4)

(5)

(6)

(7)

(8)

(9)

(10)

(11)

(12)

(13)

See Also

assume

complex

evalc

float

numeric_type

RealDomain

 


Download Help Document