Recursion function in matlab

1 回表示 (過去 30 日間)
Noa  Yelin
Noa Yelin 2020 年 10 月 19 日
コメント済み: Rik 2020 年 10 月 20 日
Hey
How do I write a function that get a matrix as an argument and returns the sum of all the members in it recursively?
Thanks you
  2 件のコメント
Rik
Rik 2020 年 10 月 19 日
編集済み: Rik 2020 年 10 月 19 日
You can find guidelines for posting homework on this forum here. If you have trouble with Matlab basics you may consider doing the Onramp tutorial (which is provided for free by Mathworks).
Is your question how to write a recursive function at all? Or do you want someone else to do your complete homework assignment for you?
Noa  Yelin
Noa Yelin 2020 年 10 月 19 日
i want to know how to write a recursive function.

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

回答 (1 件)

Rik
Rik 2020 年 10 月 19 日
function n=I_call_myself(n)
disp(n)
if n>0
n=I_call_myself(n-1);
else
disp('n has reached 0')
end
end
  2 件のコメント
Noa  Yelin
Noa Yelin 2020 年 10 月 19 日
thank you!
Rik
Rik 2020 年 10 月 20 日
If my answer helped, please consider marking it as accepted answer. If not, feel free to comment with your remaining issue.

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

カテゴリ

Help Center および File ExchangeMATLAB についてさらに検索

製品

Community Treasure Hunt

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

Start Hunting!

Translated by