Borrar filtros
Borrar filtros

I have a data which include point numbers, y_error and x_error belongs to point numbers (mx3 matrix) point numbers are string other values are double. I wanna check whether errors are exceeding particular number and I wanna show which point.

1 visualización (últimos 30 días)
for example;
point numbers=[a;b;c;...]
errors_y=[0.4;0.52;0.25;...]
errors_x=[0.4;0.33;0.51;...]
I wanna check and see which points errors exceeding 0.5, what kind of loop I have to write?

Respuesta aceptada

David Sanchez
David Sanchez el 22 de Mayo de 2013
Use find function. In the example below, b contains the positions of elements greater than 0.5 within array a.
a=[.1 .3 .5 .6 .7];
b = find(a>0.5)
b =
4 5

Más respuestas (0)

Etiquetas

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by