Remove Data Outside Range

18 views (last 30 days)
Doug
Doug on 10 Oct 2018
Commented: Doug on 10 Oct 2018
I am trying to remove data in both columns based on a data range for the first column. i.e. Col1<4 and Col1>20. And then within the new range determine the max value in Col2 and give me the corresponding value in Col1

Accepted Answer

ANKUR KUMAR
ANKUR KUMAR on 10 Oct 2018
AA=temp(temp(:,1)>=4 & temp(:,1)<=20,:);
There is no need to remove. Directly store the numbers which you need.
[xx,yy]=max(AA(:,1));
AA(yy,:)
  3 Comments
ANKUR KUMAR
ANKUR KUMAR on 10 Oct 2018
Use this one,
[xx,yy]=max(AA(:,2));
AA(yy,:)
ans =
13.2813 0.0018
Doug
Doug on 10 Oct 2018
Awesome, thanks for the help.

Sign in to comment.

More Answers (0)

Categories

Find more on Multidimensional Arrays in Help Center and File Exchange

Tags

Products


Release

R2017a

Community Treasure Hunt

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

Start Hunting!