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

3 ビュー (過去 30 日間)
Heramb Gaikwad
Heramb Gaikwad 2019 年 5 月 1 日
コメント済み: Heramb Gaikwad 2019 年 5 月 1 日
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 Center および File ExchangeCall C++ from MATLAB についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by