I am trying to implement this function so that it returns the sum of all the values in the m-by-n matrix A without using the buit in function sum

1 vue (au cours des 30 derniers jours)
function s = totalsum(A)
%A is an m-by-n matrix
%s is the sum of all the values in A
I dont know where to start.

Réponse acceptée

Walter Roberson
Walter Roberson le 8 Oct 2013
t = cumsum(A(:));
s = t(end);

Plus de réponses (0)

Catégories

En savoir plus sur Multidimensional Arrays dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by