How remove plateaus on plot?
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Bruno
el 29 de En. de 2014
Comentada: Iain
el 29 de En. de 2014
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/155781/image.jpeg)
I want create a script that remove the plateau in red on the plot (figure) and concatenate the rest of the data. I have large data set. Thanks
0 comentarios
Respuesta aceptada
Azzi Abdelmalek
el 29 de En. de 2014
t=1:numel(y)
d=abs(gradient(y,t))
y(d<0.4)=[];
plot(y)
0 comentarios
Más respuestas (1)
Iain
el 29 de En. de 2014
I can't download your example, but the answer shouldn't be too difficult:
data %- This is your vector of values.
initial = data(1);
diffs = diff(data);
diffs(diffs==0) = [];
diffs(2:end+1) = diffs;
diffs(1) = initial;
new_data = cumsum([initial diffs]);
plot(new_data)
2 comentarios
Iain
el 29 de En. de 2014
My bad, I didn't correct for something I'd corrected for:
new_data = cumsum(diffs);
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!