Plot a cyinder with height from one value to another
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
F.O
am 4 Nov. 2017
Kommentiert: Star Strider
am 5 Nov. 2017
I want to plot a cylinder with height that goes from -4 to 4 and radius 2?
Akzeptierte Antwort
Star Strider
am 5 Nov. 2017
I can’t determine if this is a homework assignment or not.
The plot is straightforward:
r = 2;
t = linspace(0, 2*pi);
cyl = [r*cos(t); r*sin(t)];
figure(1)
plot(cyl(1,:), cyl(2,:))
figure(1)
surf([cyl(1,:); cyl(1,:)], [cyl(2,:); cyl(2,:)], [-4*ones(1,size(cyl,2)); 4*ones(1,size(cyl,2))])
grid on
axis equal
2 Kommentare
Star Strider
am 5 Nov. 2017
My code will plot the cylinder, as you requested.
I leave the rest to you.
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Annotations finden Sie in Help Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!