How do I write this code without a for loop?

2 visualizaciones (últimos 30 días)
Michelle
Michelle el 16 de Mzo. de 2019
Comentada: Walter Roberson el 15 de Nov. de 2020
Write a Matlab function that takes one input -- an MxN matrix -- and returns one output -- the row number of the matrix with the smallest row sum.
How do I rewirte this function without a for loop?
function min_row = min_row_sum(A)
min_row = 1;
min_total = 0;
[r, c] = size(A);
for i=1:r
total = 0;
for j=1:c
total = total+A(i, j);
end
if i==1 || total < min_total
min_row = i;
min_total = total;
end
end
end
  1 comentario
Walter Roberson
Walter Roberson el 15 de Nov. de 2020
Michelle, if you feel that the question is unclear, then as you are the person who posted the question, you should be the one who clarifies it to make it more clear.

Iniciar sesión para comentar.

Respuestas (1)

madhan ravi
madhan ravi el 16 de Mzo. de 2019
Since it’s your homework sum along the rows and use min.
doc sum
doc min

Categorías

Más información sobre Loops and Conditional Statements en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by