problem using the find function
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
hi, i'm trying to use the find function to locate specific values form matrix array and to remove them (as you can see in the attached m-file) https://www.dropbox.com/s/bcynkiblh7n8tr5/check_values_s_ds_script.m
i use the function like this:
[row,col] = find(resault>0.899 & resault < 1);
but still i find values that are greater then 1 (some are even 50) what am i doing wrong?
4 comentarios
Azzi Abdelmalek
el 3 de Feb. de 2014
I don't know how you got those figures, but I can assure you that
row,col] = find(resault>0.899 & resault < 1)
will find only location of numbers that are between 0.899 and 1
Respuesta aceptada
Más respuestas (2)
Amit
el 3 de Feb. de 2014
row and col are the indices in the matrix which have the value you need. Find function just finds the indices which satisfy the condition, however find function does not replaces those values.
0 comentarios
Azzi Abdelmalek
el 3 de Feb. de 2014
Editada: Azzi Abdelmalek
el 3 de Feb. de 2014
What you want is
resault(resault>0.899 & resault < 1)
Maybe what you mean by remove them
resault(resault>0.899 & resault < 1)=0
Removing an element doesn't mean set it to zero. Also you can't remove a element from a nxm matrix, you can remove an entire column or row.
1 comentario
per isakson
el 4 de Feb. de 2014
or
resault(resault>0.899 & resault < 1) = nan;
Ver también
Categorías
Más información sobre Creating and Concatenating Matrices en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!