How to Find a Value From Another Value?
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Rafael
el 7 de Dic. de 2017
Comentada: Rafael
el 7 de Dic. de 2017
I have a matrix, so I would like to find a value from the first column by using values from the last columns. For example, I have an specific value from the last column which I found by suing "find". How can I then find the value from the first column from that specific row by using the last column value?
0 comentarios
Respuesta aceptada
Birdman
el 7 de Dic. de 2017
One approach:
A=[1 2 3;4 5 6;7 8 9];
[r,c]=find(A==9);
value=A(r,1)
3 comentarios
Más respuestas (1)
Andrei Bobrov
el 7 de Dic. de 2017
Editada: Andrei Bobrov
el 7 de Dic. de 2017
A = reshape(1:16,4,[]); % Let A - your array (example)
out = A(A(:,end) == 14,1)
Ver también
Categorías
Más información sobre Resizing and Reshaping Matrices 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!