Execute matrix in a "for loop"
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Ahmed Alsaadi
el 27 de Nov. de 2018
Respondida: Honglei Chen
el 27 de Nov. de 2018
I have matrix m that is (2000x5)(rowsxcolumns), and I have a code. I want to execute my code for each column of this matrix, i.e.
loop number #1 = m(2000,col1); #2 = m(2000,col2), ....... #5 = m(2000,col5). Does anybody know how to do that?
0 comentarios
Respuesta aceptada
Honglei Chen
el 27 de Nov. de 2018
Let's say your function is foo, you can do
for ii = 1:size(m,2)
y = foo(m(:,ii));
end
HTH
0 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Loops and Conditional Statements en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!