File:Parametric Helix.svg
Summary
Description | |
Date | |
Source | Own work |
Author | Krishnavedala |
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:
![]() ![]() |
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.
|