what is the problem with my function ?
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
abdelrahman mohamed
il 27 Set 2018
Commentato: abdelrahman mohamed
il 27 Set 2018
function [area , cr ]= circle(r) area = pi* (r^2) ; cr = pi * r * 2 ;
0 Commenti
Risposta accettata
Bish Erbas
il 27 Set 2018
Modificato: Bish Erbas
il 27 Set 2018
Formatting.
function [area, cr] = circle(r)
area = pi*(r^2);
cr = pi*r*2;
end
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Statistics and Machine Learning Toolbox in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!