Am unable to wrap my head on this question regarding for loop , can someone explain the question and maybe write the code please.

1 Ansicht (letzte 30 Tage)

Akzeptierte Antwort

Awais Saeed
Awais Saeed am 10 Nov. 2021
Why use a loop if it can be done without it
A = [1 2 3; 4 5 6; 7 8 9];
[sum_of_elements] = halfsum(A)
sum_of_elements = 26
function [sum_of_elements] = halfsum(M)
A = M;
sum_of_elements = sum(triu(A), 'all');
end
  4 Kommentare

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Loops and Conditional Statements finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by