I have an array which is increasing. At one point it starts to decrease. This trend starts repeating many times in array. How to extract only the decreasing portion from that array?
3 次查看(过去 30 天)
显示 更早的评论
I have an array which is increasing. At one point it starts to decrease. This trend starts repeating many times in array. How to extract only the decreasing portions from that array and plot another array values which corresponds to that decreasing portion?
0 个评论
采纳的回答
Walter Roberson
2017-7-9
d = diff( YourArray(:).' ); %I assume it is a vector of unknown orientation
goes_down = strfind([0 d>0], [1 0]) + 1;
stops_going_down = strfind([0 d<0], [1 0]);
n_seg = length(goes_down);
segs = cell(1, n_seg);
for K = 1 : n_seg;
segs{K} = YourArray(goes_down(K) : stops_going_down(K));
end
7 个评论
Walter Roberson
2017-7-25
When you process the multiple files, at each step do you want to forget about the previous file (except perhaps for the plot that has been drawn), or at each step do you want to add on to the seg2s / seg3s arrays so that you end up with one long cell array of those that includes all of the files, or do you want to use a cell array wrapping around each of those so that you can index into the cell array to get the seg2s / seg3s relevant to that file, or ....?
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Large Files and Big Data 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!