This is a retouched picture, which means that it has been digitally altered from its original version. Modifications: Vectorization. Modifications made by Zerodamage.
This file was created using MATLAB, the following code was used
%get figure handle
fighandle = figure(1);
%plot range and function
z= linspace(0,8*pi,1000);
x = -sin(z);
y = cos(z);
%plot line through center
line = ezplot3('0','0','t',[0,8*pi]);
%plot cline: REQURIES cline.m http://www.mathworks.com/matlabcentral/fileexchange/14677-cline
%SET COLORMAP TO HSV
colormap('HSV');
cline(x,y,z);
%set view
view(100,10')
%set other options
set(fighandle, 'Position', [200, 200, 350, 500]);
set(gca,'Visible','off');
set(fighandle, 'Color', 'White');
set(line, 'Color', 'Black');
Licensing
I, the copyright holder of this work, hereby publish it under the following license:
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.
http://creativecommons.org/publicdomain/zero/1.0/deed.enCC0Creative Commons Zero, Public Domain Dedicationfalsefalse
Captions
Add a one-line explanation of what this file represents