Clear Filters
Clear Filters

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 view (last 30 days)
function [s] = multiSum(A)
s=sum(A(:,end))
end

Accepted Answer

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

Sign in to comment.

More Answers (0)

Categories

Find more on Migrate GUIDE Apps in Help Center and File Exchange

Products


Release

R2022b

Community Treasure Hunt

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

Start Hunting!