Finding location of specific element from a MATRIX returns '0×1 empty double column vector'
4 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Zhou Ci
el 23 de Sept. de 2021
Comentada: Zhou Ci
el 23 de Sept. de 2021
Hi everyone,
I have a matrix and I'm trying to find location of some specific elements but it gives me no answer. My code:
[i,j] = find(a==23.5975) % it can be clearly seen in the figure that this value is present in the
% 1st row and 3rd column. but it gives the following result.
i =
0×1 empty double column vector
j =
0×1 empty double column vector
I'll be gratefu for any help, thank you.
0 comentarios
Respuesta aceptada
Chunru
el 23 de Sept. de 2021
[i,j] = find(abs(a-23.5975)<1e-20)
7 comentarios
Walter Roberson
el 23 de Sept. de 2021
target = 0.1863
rng(1);
a = rand(4)
[found, idx] = ismembertol(target, a)
[~, minidx] = min(abs(target - a(:)));
a(minidx)
a(minidx) - target
[found, idx] = ismembertol(target, a, 1e-4)
Más respuestas (0)
Ver también
Categorías
Más información sobre Creating and Concatenating 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!