フィルターのクリア

Writing code to call functions

1 回表示 (過去 30 日間)
Spaceman
Spaceman 2024 年 2 月 26 日
コメント済み: Spaceman 2024 年 2 月 26 日
Given:
Find: Create a function that calculates the surface area of a sphere when provided with a radius as the input argument. Your code should work for both scalar radius values or an array of radii.
My Solution:
function A = AreaSphere(radius)
A=4*pi.*r^2
end
Code to call your function
r=randi(10,3,1);
Area=AreaSphere(r)
My Issue: I don't think I've learned how to properly call functions because I keep getting errors when trying to run function.

採用された回答

Stephen23
Stephen23 2024 年 2 月 26 日
"I don't think I've learned how to properly call functions because I keep getting errors when trying to run function."
The problem is how you have written the function: you defined one input argument RADIUS which you did not use anywhere. And then inside the function you refer to a variable/function named R which you did not define anywhere.
You also need to use array operations for element-wise operations:
r=randi(10,3,1);
Area = AreaSphere(r)
Area = 3×1
50.2655 201.0619 314.1593
function A = AreaSphere(radius)
A = 4*pi.*radius.^2;
end % ^^^^^^^^
  1 件のコメント
Spaceman
Spaceman 2024 年 2 月 26 日
Genius. I understand the error of my ways now. I was getting confused on how to define and call what I had defined.

サインインしてコメントする。

その他の回答 (0 件)

タグ

製品


リリース

R2023b

Community Treasure Hunt

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

Start Hunting!

Translated by