Filter löschen
Filter löschen

I have a function that takes an N X M array, A, and I want to take the sum of each column. The sum of the rows and sums of the two diagonals, the major diagonal first.

1 Ansicht (letzte 30 Tage)
function [s] = multiSum(A)
s=sum(A(:,end))
end

Akzeptierte Antwort

Walter Roberson
Walter Roberson am 16 Feb. 2023
You can extract diagonals by using diag . And I see you already found sum . Be sure to read about the dim parameter of sum
  2 Kommentare
the cyclist
the cyclist am 16 Feb. 2023
I'm not convinced they "found" sum, as opposed to being given this function framework to adapt for a homework assignment. :-)
Joshua
Joshua am 16 Feb. 2023
for this homework I was given NO function framework to adapt. But thank you for the guide, I will update accordingly.

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Migrate GUIDE Apps finden Sie in Help Center und File Exchange

Produkte


Version

R2022b

Community Treasure Hunt

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

Start Hunting!

Translated by