File:Parametric Helix.svg

Summary

Description
English: Parametric helix described by .
Date
Source Own work
Author Krishnavedala
 
W3C-validity not checked.
Category:Unchecked SVG validity

Source

Created using python

from matplotlib.pyplot import *
from numpy import linspace, cos, sin
from mpl_toolkits.mplot3d import Axes3D

t = linspace(0,50,200)
x = 5.*cos(t)
y = 5.*sin(t)
z = t/5.

fig = figure(figsize=(4,4))
ax = fig.add_subplot(111,projection='3d')
ax.view_init(30,60)

ax.plot(x,y,z)

ax.set_xlabel(r'x')
ax.set_ylabel(r'y')
ax.set_zlabel(r'z')
ax.set_title(r'Parametric helix: $\left<5\cos(t), 5\sin(t), \frac{t}{5}\right>$',fontsize=11)
fig.savefig("Test.svg",bbox_inches="tight",\
        pad_inches=.15)

Licensing

I, the copyright holder of this work, hereby publish it under the following license:
Creative Commons CC-Zero This file is made available under the Creative Commons CC0 1.0 Universal Public Domain Dedication.
The person who associated a work with this deed has dedicated the work to the public domain by waiving all of their rights to the work worldwide under copyright law, including all related and neighboring rights, to the extent allowed by law. You can copy, modify, distribute and perform the work, even for commercial purposes, all without asking permission.

Category:CC-Zero#Parametric%20Helix.svg
Category:Self-published work Category:Helices Category:Parametric curves Category:Images with Python source code Category:SVG created with Matplotlib
Category:CC-Zero Category:Helices Category:Images with Python source code Category:Pages using deprecated source tags Category:Parametric curves Category:SVG created with Matplotlib Category:Self-published work Category:Unchecked SVG validity