File:Complex sine.svg

Uploaded by Farry
Upload date 2010-09-13T10:02:54Z
MIME type image/svg+xml
Dimensions 720 × 540 px
File size 362.6 KB

Summary

Description
English: function: absolute(sine(x+iy))
Date
Source Own work
Author Dave Farrance
SVG development
InfoField
 The SVG code is valid.
 This plot was created with Matplotlib.
Source code
InfoField

Python code

#!/usr/bin/env python
from pylab import *
from mpl_toolkits.mplot3d import Axes3D
ax = Axes3D(figure(), azim = -110, elev = 40)
X = arange(-2.5, 2.5, 0.1)
Y = arange(-1, 1, 0.1)
X, Y = meshgrid(X, Y)
Z = abs(sin(X+ Y*1j))
ax.plot_surface(X, Y, Z, rstride = 1, cstride = 1, cmap = cm.jet)
ax.set_xlabel("x")
ax.set_ylabel("y")
ax.set_zlabel('abs(sin(x+iy))')
plt.savefig("complex_sin.svg")
plt.show()

Licensing

Public domain This work has been released into the public domain by its author, Dave Farrance. This applies worldwide.
In some countries this may not be legally possible; if so:
Dave Farrance grants anyone the right to use this work for any purpose, without any conditions, unless such conditions are required by law.

Captions

Add a one-line explanation of what this file represents

Items portrayed in this file

depicts

13 September 2010

image/svg+xml

7d851f9f92e8bf00054a6f31b0fbcb7d4299edba

371,318 byte

540 pixel

720 pixel

Category:PD-self Category:Self-published work Category:Sine function Category:Surface plots of complex exponential function Category:Valid SVG created with Matplotlib code