File:Exponential Function (Real Part) Density.png

Uploaded by Inductiveload
Upload date 2007-04-20T23:49:12Z
MIME type image/png
Dimensions 850 × 700 px
File size 40.6 KB
Description

Diagram of the real part of exponetial function in the complex plane. The density is given by:

Blue represents high values, red represents low values. Please note that the colouring is non-linear (it is based on the ArcTan function, see the code below), and therefore a similar change in hue does NOT necessarily denote a similar change in value.
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


  f := Re(exp(x+I*y)):

  ylimit := 2*PI:
  xlimit := 3:
  
  hsv := (x, y, z) -> RGB::fromHSV([120+85*arctan(z), 1, 1]):
  
  cplot := plot::Density(f, 
                         x = -xlimit..xlimit, 
                         y = -ylimit..ylimit, 
                         Mesh = [800, 800],
                         AxesTitleFont = ["Courier New", Bold, 14],
                         TicksLabelFont = ["Arial", 10],
                         FillColorFunction = hsv,
                         YTicksNumber = None,
                         YTicksAt = [-3*PI/2 = "-3 PI/2", -PI = "-PI", -PI/2 = "-PI/2", -2*PI = "-2 PI",
                                     0 = "0", 
                                     PI/2 = "PI/2", PI = "PI",  3*PI/2 = "3 PI/2", 2*PI = "2 PI"],
                         XTicksDistance = 0.5):
  
  plot(cplot,
       Axes = Frame,
       Width = 8.5*unit::inch, 
       Height = 7*unit::inch):

Captions

Add a one-line explanation of what this file represents

Items portrayed in this file

depicts

20 April 2007

image/png

41,601 byte

700 pixel

850 pixel

708e465111d0d1ef3a600d29e8a4d95eabcf5050

Category:Complex color plots of exponential function Category:Hue Category:MuPad graphics Category:PD-self Category:Self-published work