what is the problem with my function ?
    6 ビュー (過去 30 日間)
  
       古いコメントを表示
    
    abdelrahman mohamed
 2018 年 9 月 27 日
  
    
    
    
    
    コメント済み: abdelrahman mohamed
 2018 年 9 月 27 日
            function [area , cr ]= circle(r) area = pi* (r^2) ; cr = pi * r * 2 ;
0 件のコメント
採用された回答
  Bish Erbas
      
 2018 年 9 月 27 日
        
      編集済み: Bish Erbas
      
 2018 年 9 月 27 日
  
      Formatting.
function [area, cr] = circle(r)
area = pi*(r^2);
cr = pi*r*2;
end
その他の回答 (0 件)
参考
カテゴリ
				Help Center および File Exchange で Numerical Integration and Differential Equations についてさらに検索
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

