How remove plateaus on plot?

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

 采纳的回答

更多回答(1 个)

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 个评论

Hi Iain, is not running
Error in ==> pl at 7 new_y = cumsum([initial diffs]);
My bad, I didn't correct for something I'd corrected for:
new_data = cumsum(diffs);

请先登录,再进行评论。

类别

帮助中心File Exchange 中查找有关 Language Fundamentals 的更多信息

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by