ComplexBox
Elementary
elementary functions for ComplexBox objects
Re
compute the real part of a ComplexBox object
Im
compute the imaginary part of a ComplexBox object
abs
compute the absolute value of a ComplexBox object
argument
compute the argument of a ComplexBox object
sqrt
compute the square root of a ComplexBox object
exp
compute the exponential of a ComplexBox object
log
compute the logarithm of a ComplexBox object
rsqrt
compute the reciprocal square root of a ComplexBox object
expm1
compute the exponential of a ComplexBox object minus one
expPiI
compute the exponential of Pi*I times a ComplexBox object
log1p
compute the logarithm of a ComplexBox object minus one
signum
compute the signum of a ComplexBox object
csgn
compute the sign of a ComplexBox object
Calling Sequence
Parameters
Description
Examples
Compatibility
Re( b )
Im( b )
abs( b )
argument( b )
sqrt( b )
exp( b )
log( b )
rsqrt( b )
expm1( b )
expPiI( b )
log1p( b )
signum( b )
csgn( b )
b
-
ComplexBox object
precopt
(optional) equation of the form precision = n, where n is a positive integer
These are the standard basic elementary functions defined for ComplexBox objects.
They override the standard Maple procedures for ComplexBox objects.
Additionally, via "arblib", there are a number of variations that are not defined for standard numerics in Maple.
1/sqrt( b )
exp( b ) - 1
exp( Pi*b*I )
log( 1 + b )
Use the 'precision' = n option to control the precision used in these methods. For more details on precision, see BoxPrecision.
Note the exception raised in the following example, due to non-differentiability.
Error, (in ComplexBox:-csgn) csgn is not differentiable on the imaginary axis
The ComplexBox[Elementary], ComplexBox:-Re, ComplexBox:-Im, ComplexBox:-abs, ComplexBox:-argument, ComplexBox:-sqrt, ComplexBox:-exp, ComplexBox:-log, ComplexBox:-rsqrt, ComplexBox:-expm1, ComplexBox:-expPiI, ComplexBox:-log1p, ComplexBox:-signum and ComplexBox:-csgn commands were introduced in Maple 2022.
For more information on Maple 2022 changes, see Updates in Maple 2022.
See Also
RealBox
RealBox[Elementary]
Download Help Document