How to select the outliers of a scatter plot by mouse click and return the coordinates to the main function

조회 수: 3 (최근 30일)
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).

답변 (1개)

Suraj Kumar
Suraj Kumar 2024년 9월 27일
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 ‘ginputfunction 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!

카테고리

Help CenterFile Exchange에서 Scatter Plots에 대해 자세히 알아보기

제품


릴리스

R2022a

Community Treasure Hunt

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

Start Hunting!

Translated by