conjugate - Maple Help
For the best experience, we recommend viewing online help using Google Chrome or Microsoft Edge.
Our website is currently undergoing maintenance, which may result in occasional errors while browsing. We apologize for any inconvenience this may cause and are working swiftly to restore full functionality. Thank you for your patience.

Online Help

All Products    Maple    MapleSim


conjugate

return the complex conjugate

 

Calling Sequence

Parameters

Description

Thread Safety

Examples

Compatibility

Calling Sequence

conjugate(x)

Parameters

x

-

expression

Description

• 

The conjugate(x) function computes the complex conjugate of x.

• 

You can enter the command conjugate using either the 1-D or 2-D calling sequence. For example, conjugate(3 + 5*I) is equivalent to .

• 

If x includes a function f, then conjugate(x) executes the procedure `conjugate/f` (if it exists) to compute the conjugate of the corresponding part of the expression.

  

By this method, the functionality of this command can be extended.  For example, recording that a function f is conjugate symmetric can be accomplished by defining the following function.

         `conjugate/f` := proc(x) f(conjugate(x)) end proc;

• 

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

Thread Safety

• 

The conjugate command is 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)

Compatibility

• 

The conjugate command was updated in Maple 2016; see Advanced Math.

See Also

assume

combine

evalc

expand

initialfunctions

Re

 


Download Help Document