Extracting data points (with specific coordinates) from plot
古いコメントを表示
Hi,
I have plotted a large number of data. Now from this plot, I want to extract data points that their Y coordinate is either 40 or very close to 40 (say closer than 0.01).
Anyone know how I can do that?
回答 (1 件)
For example,
Y=40+0.04*linspace(-1,1,10)
data=10*(1:numel(Y))
data_Extracted = data(abs(Y-40)<=0.01)
カテゴリ
ヘルプ センター および File Exchange で Surface and Mesh Plots についてさらに検索
製品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!