type/complex
check for an object of type complex
type/complex[8]
check for an object of type complex[8]
Calling Sequence
Parameters
Description
Examples
type(x, complex)
type(x, complex(d))
type(x, complex[8])
x
-
any expression
d
any type
The type(x, complex) function returns true if x is an expression of the form a+Ib, where a (if present) and b (if present) are finite and of type realcons.
The type(x, complex(d)) function returns true if ±ℜx or (if present) and ±ℑx (if present) are both of type d.
The type(x, complex[8]) function returns true if the real and imaginary parts of x are Maple hardware floats.
The "8" in complex[8] refers to the number of bytes allocated for the underlying hardware floating-point numbers. As a complex[8] number has two parts, real and imaginary, each complex[8] requires 16 bytes.
You can build complex[8] expressions using the HFloat command.
type5I,complex
true
typex,complex
false
Test whether the real and imaginary parts are rational numbers.
type12+3I,complexrational
Test whether the real and imaginary parts are names.
typea−Ib,complexname
type2+Ib,complexname
type2+47I,complexnumeric
Build a complex number using software floats.
cf≔1.+2.I:
typecf,complexfloat
typecf,complex8
Build a complex number using hardware floats.
chf≔HFloatcf
chf≔1.+2.I
typechf,complexfloat
typechf,complex8
See Also
complex
evalc
Im
Re
type
type/complexcons
type/float
type/numeric
type/realcons
Download Help Document