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 回表示 (過去 30 日間)
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.

採用された回答

Walter Roberson
Walter Roberson 2013 年 10 月 8 日
t = cumsum(A(:));
s = t(end);

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeMultidimensional Arrays についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by