Azzera filtri
Azzera filtri

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

2 visualizzazioni (ultimi 30 giorni)
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 Commento
David Fletcher
David Fletcher il 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.

Accedi per commentare.

Risposte (1)

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

Categorie

Scopri di più su Loops and Conditional Statements in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by