-
Notifications
You must be signed in to change notification settings - Fork 9
cplot
In mathematics, a complex function is a function with the complex numbers (see the imaginary numbers and the complex plane) as both its domain and codomain. The complex plot assigns a color to each point of complex plane. the origin is white, 1 is red, −1 is cyan, and a point at the infinity is black.
Visualizes the given complex function f between -1 and 1 for the real and the imaginary axes.
Argument f
Function
Returns 1. entry
ComplexPlot
cplot(sin)
Draws the complex plot of the sine function sin(z) with z = x + iy.
cplot(z => sin(z) * cos(z))
Draws the complex plot of sin(z) * cos(z) with z = x + iy.
Visualizes the given complex function f between the given values for the real and the imaginary axes.
Argument f
Function
Argument min
Scalar
Argument max
Scalar
Returns 1. entry
ComplexPlot
cplot(sin, 0 - 1i, 2 * pi + 1i)
Draws the complex plot of the sine function between 0 and 2pi on the real axis and -1 and 1 on the imaginary axes.
Visualizes the given complex function f between the given values for the real and the imaginary axes.
Argument f
Function
Argument minX
Scalar
Argument maxX
Scalar
Argument minY
Scalar
Argument maxY
Scalar
Returns 1. entry
ComplexPlot
cplot(sin, 0, 2 * pi, -1, 1)
Draws the complex plot of the sine function between 0 and 2pi on the real axis and -1 and 1 on the imaginary axes.