How can I get a row vector where a specific element found is located within a matrix?
5 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
I am trying to write a program that gives a row vector from a matrix that has the lowest element from a specific column. For example, say if I have the following,
A =
2009 8 2 4
2010 3 4 5
2011 6 9 1
2012 1 3 7
If I want to find the smallest value in column 3, which is 2, how do I get MATLAB to give the row where it is found, so that the result is
ans =
2009 8 2 4
I have been struggling with this for the past 2 days and I feel like because I've stared at this for so long I can't spot the problem. Can I get some help please?
0 comentarios
Respuesta aceptada
Andrei Bobrov
el 10 de Oct. de 2012
Editada: Andrei Bobrov
el 10 de Oct. de 2012
A =[
2009 8 2 4
2010 3 4 5
2011 6 9 1
2012 1 3 7];
[ii,ii] = min(A(:,3));
out = A(ii,:);
or
out = A(abs(A(:,3) - min(A(:,3))) < eps(100),:);
0 comentarios
Más respuestas (1)
Erika
el 10 de Oct. de 2012
3 comentarios
Andrei Bobrov
el 10 de Oct. de 2012
Editada: Andrei Bobrov
el 10 de Oct. de 2012
Hi Matt! Second part in my answer?(after 'or')
Matt Tearle
el 15 de Oct. de 2012
Oh, yes, you're right -- I was a bit confused by the eps and didn't look too closely.
Ver también
Categorías
Más información sobre Logical en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!