File:Complex sine.svg

From Wikimedia Commons, the free media repository
Jump to navigation Jump to search

Original file(SVG file, nominally 720 × 540 pixels, file size: 363 KB)

Captions

Captions

Add a one-line explanation of what this file represents

Summary

[edit]
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

[edit]
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.

File history

Click on a date/time to view the file as it appeared at that time.

Date/TimeThumbnailDimensionsUserComment
current10:02, 13 September 2010Thumbnail for version as of 10:02, 13 September 2010720 × 540 (363 KB)Farry (talk | contribs){{Information |Description={{en|1=function: absolute(sine(x+iy))}} |Source={{own}} |Author=Dave Farrance |Date=2010-09-13 |Permission= |other_versions= }}

There are no pages that use this file.