How do I create a function finding Surface Area, Volume, and Density of a cone?

72 vues (au cours des 30 derniers jours)
I've already created a function, and it reads as follows and gives me wildly incorrect answers. Is there something I'm missing?
function [SA,V,D] = coneProperties(r,m,h)
SA = pi*r*(r+sqrt(h.^2 + r.^2));
V = pi*r^2*(h/3);
D = m./V;
The surface area answer should be about 254, but it gave me 1.337628854861238e+03, which is very much not the right answer. I'm not sure what I've done wrong, so any help is appreciated!
  2 commentaires
the cyclist
the cyclist le 10 Fév 2021
Your formulas look correct to me.
What input values of r, m, and h did you use, to get those expected values?
Are you sure you entered the inputs in the correct order?
Russell Van Hoesen
Russell Van Hoesen le 10 Fév 2021
You are totally right. I put them in the wrong order. Thank you! Also the variables were as follows
r = 5,
m = 80,
h = 10,

Connectez-vous pour commenter.

Réponses (1)

Christopher Stapels
Christopher Stapels le 19 Mai 2022
Looks like the OP had it right, but Im adding the formula back here for completeness.
function [SA,V,D] = coneProperties(r,m,h)
SA = pi*r*(r+sqrt(h.^2 + r.^2));
V = pi*r^2*(h/3);
D = m./V;
% Radius r, mass m, height h.
% Surface Area SA, Volume V, Density D.

Catégories

En savoir plus sur Introduction to Installation and Licensing dans Help Center et File Exchange

Produits


Version

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by