Changing Values in a column due to another value

1 visualización (últimos 30 días)
Patrick Lonergan
Patrick Lonergan el 30 de Mayo de 2021
Respondida: Dyuman Joshi el 30 de Mayo de 2021
I have a collumn which contains 0s and 1s. The value 1 indicates that a failure occurred. I want to change the previous 6 rows prior to the failure to 1s also.
Does anyone have any idea about the best method to do this?

Respuestas (1)

Dyuman Joshi
Dyuman Joshi el 30 de Mayo de 2021
i = find(c==1,1,'first'); %c is the column vector
if i>6
c(i-6:i-1)=1;
else
c(1:i-1)=1;
end

Categorías

Más información sobre Tables 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