Replacing whole row with NaN's if first value is equal to 13 or 15.
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
MadjeKoe
el 19 de Jun. de 2022
Comentada: Voss
el 19 de Jun. de 2022
Hi! I have a matrix in which I want to replace the whole row with NaNs if the value of the first row is equal to 13 of 15. Can anyone help me with this?
0 comentarios
Respuesta aceptada
Voss
el 19 de Jun. de 2022
Do you mean the value of the first column is equal to 13 or 15?
A = randi(20,10,5)
idx = A(:,1) == 13 | A(:,1) == 15;
A(idx,:) = NaN
Or do you mean replace the whole column if the value of the first row is 13 or 15?
A = randi(20,10,5)
idx = A(1,:) == 13 | A(1,:) == 15;
A(:,idx) = NaN
2 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre NaNs 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!