Azzera filtri
Azzera filtri

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 visualizzazione (ultimi 30 giorni)
function [s] = multiSum(A)
s=sum(A(:,end))
end

Risposta accettata

Walter Roberson
Walter Roberson il 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 Commenti
the cyclist
the cyclist il 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 il 16 Feb 2023
for this homework I was given NO function framework to adapt. But thank you for the guide, I will update accordingly.

Accedi per commentare.

Più risposte (0)

Categorie

Scopri di più su Migrate GUIDE Apps in Help Center e File Exchange

Prodotti


Release

R2022b

Community Treasure Hunt

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

Start Hunting!

Translated by