Borrar filtros
Borrar filtros

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 visualización (últimos 30 días)
function [s] = multiSum(A)
s=sum(A(:,end))
end

Respuesta aceptada

Walter Roberson
Walter Roberson el 16 de Feb. de 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 comentarios
the cyclist
the cyclist el 16 de Feb. de 2023
I'm not convinced they "found" sum, as opposed to being given this function framework to adapt for a homework assignment. :-)
Joshua
Joshua el 16 de Feb. de 2023
for this homework I was given NO function framework to adapt. But thank you for the guide, I will update accordingly.

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Migrate GUIDE Apps en Help Center y File Exchange.

Productos


Versión

R2022b

Community Treasure Hunt

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

Start Hunting!

Translated by