Borrar filtros
Borrar filtros

executing for loop from 1 to n except one number

46 visualizaciones (últimos 30 días)
negin tebyani
negin tebyani el 9 de Feb. de 2018
Comentada: negin tebyani el 9 de Feb. de 2018
I have a specific number, for example row=3; and I have a for like:
for i=1:n
SOMETHING
end
and n is a matrix's row number, I need to do something in this for, and it should be done on all indexes except the one that is determined in row=3. I mean I want to do something on all 1 to n and not for 3. how can I do this?

Respuesta aceptada

Walter Roberson
Walter Roberson el 9 de Feb. de 2018
for i = setdiff(1:n, row)
SOMETHING
end
In this code, row could be a row vector if you wanted to exclude multiple values

Más respuestas (0)

Categorías

Más información sobre Creating and Concatenating Matrices 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