Filter löschen
Filter löschen

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

3 Ansichten (letzte 30 Tage)
Aswin Sandirakumaran
Aswin Sandirakumaran am 8 Apr. 2018
Kommentiert: David Fletcher am 8 Apr. 2018
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 Kommentar
David Fletcher
David Fletcher am 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.

Melden Sie sich an, um zu kommentieren.

Antworten (1)

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

Kategorien

Mehr zu Loops and Conditional Statements finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by