Borrar filtros
Borrar filtros

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

2 visualizaciones (últimos 30 días)
Aswin Sandirakumaran
Aswin Sandirakumaran el 8 de Abr. de 2018
Comentada: David Fletcher el 8 de Abr. de 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 comentario
David Fletcher
David Fletcher el 8 de Abr. de 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.

Iniciar sesión para comentar.

Respuestas (1)

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

Categorías

Más información sobre Loops and Conditional Statements en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by