select/ extract only increasing part among both increasing and decreasing set of data
    4 views (last 30 days)
  
       Show older comments
    
I have a data set which initially increases and then decreases. I want to select/ extract only increasing part. How shall I do this?
0 Comments
Answers (1)
  Walter Roberson
      
      
 on 1 May 2019
        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()
See Also
Categories
				Find more on Call C++ from MATLAB in Help Center and File Exchange
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
