How to select the outliers of a scatter plot by mouse click and return the coordinates to the main function
11 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
How to select the outliers of a scatter plot by mouse click and return the coordinates to the main function.
Here is a scatter plot composed of known points, how to select some anomalies by mouse click and return the coordinates of the anomalies to the main function?
Suppose the selected points in the graph are anomalies (3 points).

0 Kommentare
Antworten (1)
Suraj Kumar
am 27 Sep. 2024
To select outliers from a scatter plot and return the coordinates of the selected points to the main function, you can follow these steps:
1. Use the ‘ginput’ function to capture the x and y coordinates of the points selected from the plot by clicking.
% Get user input for selected points
[xSelected, ySelected] = ginput;
2. Visually mark the selected points in the scatter plot to confirm them.
hold on;
scatter(xSelected, ySelected, 100, 'r', 'x'); % Mark selected points
hold off;
3. Store the coordinates in a matrix and return the matrix from the function.
selectedPoints = [xSelected, ySelected];
You may refer to the output below:
For more information on the ‘ginput’ function in MATLAB, you can check the following documentation:
Hope this helps!
0 Kommentare
Siehe auch
Kategorien
Mehr zu Data Exploration finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!