Clear Filters
Clear Filters

How to match two arrays with its index and extract the value ?

2 views (last 30 days)
For Eg:
B = [ 60,600,15];
C = [10^(-4),10^(-9),10^(-7)];
Here we need to look for the minimum value in the array C and once done match its index with array B and display the value ( which in this case will be 600). And this should be done in loop And the Output should look something like this
O = [600,15,60];
  1 Comment
David Fletcher
David Fletcher on 8 Apr 2018
The quirkiness of the problem, and the stipulation of using a loop makes this sound a bit like homework. Even if it's not, you should at least make some effort of creating a solution of your own. If you then have problems with things that don't work, come back and ask further questions. That's how people learn.

Sign in to comment.

Answers (1)

Birdman
Birdman on 8 Apr 2018
Simply do this:
[~,idx]=sort(C,'ascend')
O=B(idx)

Categories

Find more on Loops and Conditional Statements 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!