|
Release 4.0 |
 |
Predefined Functions - complex
Function name: | complex - Returns a complex number from two real numbers. |
Synopsis: | complex(r,i) |
Input data type |
Output data type |
real, real |
complex |
Description:
Given two real arguments this function creates a complex number whose real part is the first argument and whose imaginary part is the second argument. Thus complex(3,4) creates the complex number 3+4i.
|