function area = calcarea(rad) ↑ Error: Function definitions are not permitted in this context.
Ältere Kommentare anzeigen
Hello to all.
I am new to MATLAB and learning from a Book.
I typed this code from Book and save the file as calcarea.m
function area = calcarea(rad)
area = pi*rad*rad;
end
But i am getting this error when I select 'evaluation selection'- "Function definitions are not permitted in this context''.
But when run it i get this error
calcarea
Not enough input arguments.
Error in calcarea (line 2)
area = pi*rad*rad;
Please help me to remove this error
Thanks in advance
Antworten (2)
darova
am 23 Apr. 2020
0 Stimmen
See this simple solution

Sudipto Dutta
am 28 Jan. 2022
0 Stimmen
function area = calcarea(rad)
area = pi*rad*rad;
end
Kategorien
Mehr zu Statistics and Machine Learning Toolbox finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!