File:Complex sine.svg

Summary

Description
English: function: absolute(sine(x+iy))
Date
Source Own work
Author Dave Farrance
SVG development
InfoField
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.
Category:Self-published work#Complex%20sine.svgCategory:PD-self#Complex%20sine.svg Category:Sine function Category:Surface plots of complex exponential function
Category:PD-self Category:Self-published work Category:Sine function Category:Surface plots of complex exponential function Category:Valid SVG created with Matplotlib code