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 次查看(过去 30 天)
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?

采纳的回答

David Sanchez
David Sanchez 2013-5-22
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

更多回答(0 个)

标签

Community Treasure Hunt

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

Start Hunting!

Translated by