File:Exponential Function (Imag Part at Infinity) Density.png
| Description |
Diagram of the value of imaginary part of exponential function in the complex plane, as the operand approaches infinity. The plot is given by: |
||
| Date | |||
| Source | Own drawing, Plotted in MuPAD | ||
| Author | Inductiveload | ||
| Permission (Reusing this file) |
|
MuPAD Code
f := Re(exp(1/(x+I*y))):
ylimit := 1:
xlimit := 1:
mesh := 1600:
hsv := (x, y, z) -> RGB::fromHSV([121+85*arctan(z), 1, 1]):
cplot := plot::Density(f,
x = -xlimit..xlimit,
y = -ylimit..ylimit,
AntiAliased = TRUE,
Mesh = [mesh, mesh],
AxesTitleFont = ["Courier New", Bold, 14],
TicksLabelFont = ["Arial", 10],
FillColorFunction = hsv,
YTicksDistance = 0.5,
XTicksDistance = 0.5):
plot(cplot,
Axes = Frame,
Width = 8.5*unit::inch,
Height = 7*unit::inch):
Category:Complex color plots of exponential function
Category:MuPad graphics