select/ extract only increasing part among both increasing and decreasing set of data

1 次查看(过去 30 天)
I have a data set which initially increases and then decreases. I want to select/ extract only increasing part. How shall I do this?

回答(1 个)

Walter Roberson
Walter Roberson 2019-5-1
locs = strfind([diff(DATA)<0,true], [0 1]) + 1;
DATA(1:locs(1))
The code was written like this to have protection for the case where the data is all ascending. You could also find(diff(DATA)<0,1) and test for isempty()
  1 个评论
Heramb Gaikwad
Heramb Gaikwad 2019-5-1
Thank you Sir for quick reply
Actually I got this command somewhere, which determine the peak value from this we can extract the data in increasing order
[peaks,idx]=findpeaks(A);

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 NaNs 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by