area of a circle function file / prompt and fprintf() output
7 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Ashley Sullivan
am 11 Mär. 2020
Kommentiert: Rena Berman
am 14 Mai 2020
I have created a function file for the area of a circle, but I also need to include a prompt asking for the units of the radius. I also need to have the output area be expressed in the proper units, but am unsure of how to do either. This is what I have --
function [area] = area_circle(radius)
area = pi.*radius.^2;
end
1 Kommentar
Akzeptierte Antwort
Bhaskar R
am 11 Mär. 2020
function area_circle()
radius = input('Enter the radius: ');
area_cir = pi.*radius.^2;
disp(['Area of circle: ', num2str(area_cir)])
end
0 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Environment and Settings finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!