File:Complex sine.svg
Summary
Description |
English: function: absolute(sine(x+iy)) |
Date | |
Source | Own work |
Author | Dave Farrance |
SVG development | |
Source code | 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
![]() |
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. |