want to find the particular column when the column content is given
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
a=[1 4 5 9 40 23 18] then if a(5) on command window then output 40 then 'what is the command to know' in which column 40 is there?
0 comentarios
Respuesta aceptada
Andrei Bobrov
el 19 de En. de 2012
i1 = find(a == 40)
OR
i1 = find(abs(a - 40) < 1e3*eps)
0 comentarios
Más respuestas (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!