Create a for loop for a function

I want to create a function for volume of the cylinder but it always says 'Undefined function'
function Volume(pi,r)
for r=1:N
A=r^2*pi;
disp([num2str(pi) '*' num2str(r^2) '=' num2str(A)])
end
volume(pi,4)

Respuestas (2)

Joe Yeh
Joe Yeh el 4 de Oct. de 2016

0 votos

MATLAB is case sensitive. Your function call should match exactly your function definition.
Yunus Tunc
Yunus Tunc el 4 de Oct. de 2016

0 votos

That's why I want to see what wrongs I have

Categorías

Más información sobre Loops and Conditional Statements en Centro de ayuda y File Exchange.

Etiquetas

Preguntada:

el 4 de Oct. de 2016

Respondida:

el 4 de Oct. de 2016

Community Treasure Hunt

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

Start Hunting!

Translated by