How to create a function that calculates and returns the volume and cross-sectional area of a cylinder based on the radius and height?

3 ビュー (過去 30 日間)
Hello to matlabs user Please help me I am stuck on a problem :( Does anyone have code for a function that calculates and returns the volume and cross-sectional area of a cylinder based on the radius and height? I also need code for a function that radius and height can not be negative. Does anyone have this or have an idea how to do this? Thanks so much.

採用された回答

Massimo Zanetti
Massimo Zanetti 2016 年 10 月 5 日
Here it is
function A=sect_area_cylinder(R,H,alpha)
%Cylinder of radius R and height H,
%its base-circle center coincide with the point (0,0,0).
%The intersecting plane is supposed to rotate around the
%line (x=0,y=H/2) with angle ALPHA (in degrees)
if (R<=0)||(H<=0)
error('Input positive R,H');
end
if alpha==0
%the cross-section is a circle
A=R^2*pi;
elseif alpha==90
%the cross section is a rectangle
A=2*R*H;
elseif (0<alpha)&&(alpha<90)
%the cross section is an ellipse
%of short radius R and long radius R/cos(alpha)
A=pi*R*R*cos(alpha*pi/180);
else
disp('alpha in [0,90]');
end
  2 件のコメント
Massimo Zanetti
Massimo Zanetti 2016 年 10 月 5 日
Cross section is a circle only if alpha=0 (the intersecting plane is horizontal). Alpha is used for calculation on in the case it is greater than 0 and less than 90 because the radii of the ellipse depend on it.
If this answer helped you, please accept it.
Emre Tunc
Emre Tunc 2016 年 10 月 5 日
haha yes you are right thank you so much thank you for helping

サインインしてコメントする。

その他の回答 (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