A recursive matrix sum

7 ビュー (過去 30 日間)
Noa  Yelin
Noa Yelin 2020 年 10 月 21 日
コメント済み: Noa Yelin 2020 年 10 月 21 日
Hey
I wrote a function that gives u the sum of the matrix. I try to write it with rerursive, but it doen't get well. i need an explanation..
this is my code -
function total=ff(l)
total = 0;
for i = 1:numel(l)
total = total+l(i);
end
any help?
  2 件のコメント
KSSV
KSSV 2020 年 10 月 21 日
Why recusrsion? It can be achieved with ease without recursion eh.
Noa  Yelin
Noa Yelin 2020 年 10 月 21 日
yes but I need to do it with recursion, Im learning it right now

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

採用された回答

Asad (Mehrzad) Khoddam
Asad (Mehrzad) Khoddam 2020 年 10 月 21 日
You function is not recursive
function total=ff(l)
lp=l(:);
if numel(l) == 1
total = l(1);
else
total = lp(end) + ff(lp(1:end-1));
end
end
  1 件のコメント
Noa  Yelin
Noa Yelin 2020 年 10 月 21 日
thank you cery much

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

その他の回答 (0 件)

カテゴリ

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

タグ

製品

Community Treasure Hunt

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

Start Hunting!

Translated by