How to find a value and set the following 2 value to NaN?
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Emmanouil Rachoutis
el 16 de Dic. de 2018
Comentada: Emmanouil Rachoutis
el 18 de Dic. de 2018
Hi :) I have a vector let's say A=randi(10,1,100)' and whenever I find a value equal to 1 I want to set that value and the following 2 values to NaN.
For another case I need to do the same but whenever there are 4 ones in row, then I need to do set to NaN the 2 values following the last 1.
Does anyone know a way of doing that?
0 comentarios
Respuesta aceptada
madhan ravi
el 16 de Dic. de 2018
A=randi(10,1,10).'
idx=find(A==1);
A([idx idx+1 idx+2])=NaN
3 comentarios
madhan ravi
el 18 de Dic. de 2018
Editada: madhan ravi
el 18 de Dic. de 2018
Anytime :) , let me get back to you in a few minutes , you can either unaccept my answer or pose it as a separate question so that others may answer you.
Más respuestas (0)
Ver también
Categorías
Más información sobre Resizing and Reshaping Matrices 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!