File:Mpl example 3D surface.svg

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

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

Captions

Captions

Add a one-line explanation of what this file represents

Summary

[edit]
Description
English: 3D surface plot with Matplotlib
Date
Source Own work
 
This W3C-unspecified plot was created with Matplotlib.
Author Adrien F. Vincent

Rationale: this work aims at providing an updated version of the previous work https://commons.wikimedia.org/wiki/File:Matplotlib_3d_v.svg , done by IkamusumeFan,

Source code has been (very) slightly modified into fully object-oriented matplotlib interface. The original shebang was also removed.

The matplotlib (mpl) version is 1.5.3, with Python 2.7 and numpy 1.10

##########
## Code for the figure
##########
"""This generates the graph of the function f(x, y) = sin(sqrt(x^2 + y^2))."""

import matplotlib.pyplot as plt
import numpy as np
from matplotlib import cm
from mpl_toolkits.mplot3d import Axes3D

fig = plt.figure()
fig.clf()
ax = fig.add_subplot(1, 1, 1, projection='3d')

x = np.arange(-5, 5, 0.25)
y = np.arange(-5, 5, 0.25)
X, Y = np.meshgrid(x, y)
R = np.sqrt(X*X + Y*Y)
Z = np.sin(R)

surf = ax.plot_surface(X, Y, Z, rstride=1, cstride=1, cmap=cm.coolwarm)

fig.savefig("matplotlib_3d.svg")
plt.show()
##########

Licensing

[edit]
I, the copyright holder of this work, hereby publish it under the following license:
w:en:Creative Commons
attribution share alike
This file is licensed under the Creative Commons Attribution-Share Alike 4.0 International license.
You are free:
  • to share – to copy, distribute and transmit the work
  • to remix – to adapt the work
Under the following conditions:
  • attribution – You must give appropriate credit, provide a link to the license, and indicate if changes were made. You may do so in any reasonable manner, but not in any way that suggests the licensor endorses you or your use.
  • share alike – If you remix, transform, or build upon the material, you must distribute your contributions under the same or compatible license as the original.

File history

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

Date/TimeThumbnailDimensionsUserComment
current09:52, 27 September 2016Thumbnail for version as of 09:52, 27 September 2016720 × 540 (329 KB)Adrien F. Vincent (talk | contribs)User created page with UploadWizard

There are no pages that use this file.

File usage on other wikis

The following other wikis use this file:

Metadata