hello, i have a graph and i want to select some points automatically can anyone please help me. i attache the graph below and the points need to select are in circle.
4 ビュー (過去 30 日間)
古いコメントを表示
1 件のコメント
Image Analyst
2021 年 11 月 26 日
Maybe try imchangepts(). Attach your data if you want people to try things. There are probably lots of approaches depending on how you define the points. Attach several data sets because an algorithm that works for one might not work for a different one.
回答 (2 件)
Alagu Sankar Esakkiappan
2021 年 12 月 7 日
I see that you're trying to highlight abrupt points in the plotted graph. This may be achieved using findchangepts to find out indices of exact points of interest. The indices may then be highlighted using plot function and utilizing its properties.
The following code may provide you further understanding:
highlightIndices = (findchangepts(lab,'MaxNumChanges',6))'; % Tinker properties of findchangepts to specify highlighting behavior
plot(cal,lab); % Original Plot without highlighting
hold on % To make changes on top of previous plot
plot(cal(highlightIndices),lab(highlightIndices),"ro","MarkerSize",15); % Highlights points with Red Circle of Radius 15
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Statistics and Linear Algebra についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!