Effacer les filtres
Effacer les filtres

Hot to locate indices of 2-D data located out of circle?

6 vues (au cours des 30 derniers jours)
Abdulaziz Abutunis
Abdulaziz Abutunis le 17 Nov 2019
Dear All,
I have x,y data that are extracted from a triangle solution. I wonder if there is a command (no loop) that will find the indices of elements when x^2+y^2 > than a specific value. The reason I want to eliminate them.
Thank you
Aziz

Réponse acceptée

Walter Roberson
Walter Roberson le 17 Nov 2019
vector_of_y_values = (1:number_of_rows) - y_center;
vector_of_x_values = (1:number_of_columns) - x_center;
[Yg, Xg] = ndgrid(vector_of_y_values, vector_of_x_values);
idx = find(Xg.^2 + Yg.^2 > specific_value);
  4 commentaires
Walter Roberson
Walter Roberson le 17 Nov 2019
I forgot to account for possible scale factors such as the possibility that the x coordinates are percentage. The x and y vectors should be constructed so that they list the x and y coordinates, such
linspace(firstx, lastx, number of x)
Abdulaziz Abutunis
Abdulaziz Abutunis le 18 Nov 2019
Thank you, Walter, for your valuable suggestions

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur 2-D and 3-D Plots dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by