フィルターのクリア

How do I make a cylinder with base (2,0,1) and radius 2?

1 回表示 (過去 30 日間)
Anna
Anna 2014 年 12 月 16 日
編集済み: Mohammad Abouali 2014 年 12 月 16 日
Also how do I assign heights?

採用された回答

Mohammad Abouali
Mohammad Abouali 2014 年 12 月 16 日
編集済み: Mohammad Abouali 2014 年 12 月 16 日
where radius=2; Then to move the base to (x0,y0,z0)=(2,0,1) and also make the height of the cylinder to be h=10 do this
% Radius =2
R=2;
%Base at (2,0,1)
x0=2;y0=0;z0=1;
% Height = 10
h=10
[x,y,z]=cylinder(R)
x=x+x0;
y=y+y0;
z=z*h+z0;
% to plot
surf(x,y,z)

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeSurface and Mesh Plots についてさらに検索

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by