File:Exponential Function (Imag Part at Infinity).png

Uploaded by Inductiveload
Upload date 2007-04-22T06:36:48Z
MIME type image/png
Dimensions 1700 × 1400 px
File size 657.4 KB
Description

Diagram of the imaginary part of exponetial function in the complex plane, as the operand approaches infinity. The plot is given by:

The countour lines correspond to integer heights, and the gridlines have spacings of 0.08.
Date
Source Own drawing, Plotted in MuPAD
Author Inductiveload
Permission
(Reusing this file)
Public domain I, the copyright holder of this work, release this work into the public domain. This applies worldwide.
In some countries this may not be legally possible; if so:
I grant anyone the right to use this work for any purpose, without any conditions, unless such conditions are required by law.

MuPAD Code


  q := Im(exp(1/(x+I*y))):

  conts := 21:
  projectionlevel:=-10:
  ylimit := 1:
  xlimit := 1:
  submeshlevel := 30:

zmin := -10:
zmax := 10:
color := zip(RGB::Yellow, RGB::DarkGreen,
             (a, b) -> (q(x,y)-zmin)/(zmax-zmin)*a
                      +(zmax-q(x,y))/(zmax-zmin)*b):

funcplot := plot::Function3d(q(x,y),
                             x = -xlimit..xlimit,
                             y = -ylimit..ylimit,
                             Mesh = [25, 25],
                             Submesh = [submeshlevel,submeshlevel],
                             LineColor = RGB::Black.[0.4],
                             LineWidth = 0.15,
                             FillColorFunction = color,
                             AxesTitleFont = ["Courier New", Bold, 14],
                             ViewingBoxZRange = -10..10
                            ):

contours := plot::modify(funcplot,
                         ZContours = [Automatic, conts],
                         LineWidth = 0.2,
                         LineColor = RGB::Gray90.[0.5],
                         XLinesVisible = FALSE,
                         YLinesVisible = FALSE,
                         Filled = FALSE
                        ):
                        
projcontours := plot::Transform3d([0, 0, projectionlevel],
                                  [1, 0, 0, 0, 1, 0, 0, 0, 0], 
                                   plot::modify(funcplot, ZContours = [Automatic, conts],
                                                LineWidth = 0.2,
                                                LineColorType = Dichromatic,
                                                LineColor = RGB::Yellow.[0.99],
                                                LineColor2 = RGB::DarkGreen.[0.99],
                                                XLinesVisible = FALSE,
                                                YLinesVisible = FALSE,
                                                Filled = FALSE
                                               )
                                  ):
                             
camera := plot::Camera([20, 35, 300],
                       [0, 0, 0],
                       0.06
                      ):
                             
ploteverything := plot::Canvas(funcplot, contours, projcontours,
                               Width = 8.5*unit::inch, 
                               Height = 7*unit::inch,
                               camera
                               ): 
                          
plot(ploteverything)

Captions

Add a one-line explanation of what this file represents

Items portrayed in this file

depicts

20 April 2007

673,171 byte

1,400 pixel

1,700 pixel

image/png

ae35648947ff45756fbaecfb4d9825cbeae22acf

Category:Images with MuPad source code Category:PD-self Category:Self-published work Category:Surface plots of complex exponential function