How do I get object data from a FIG file, such as X and Y data?
古いコメントを表示
i search on matlab searching question but not found it.
I have a graph with a curve. I want to know the Y value from my graph
example X = 10
how to find Y?
thx.
4 件のコメント
%example
X = 1:0.1:20;
Y = sin(X);
index = find(X==10);
Y_point = Y(index)
% See graphically
plot(X,Y,X(index),Y_point,'o');
uncung fgv
2012 年 8 月 14 日
GS76
2020 年 2 月 10 日
Thank you MRR!
Your reply helped me greatly.
Much appreciated.
afiq hassan
2020 年 4 月 25 日
But what if I want to find x values using y axis?
採用された回答
その他の回答 (2 件)
asma chaudhry
2018 年 9 月 11 日
0 投票
Use Matlab's data cursor to find the first intersection of the line y=x with the graph of y=tan(x) in the first quadrant. Enter your answer as a decimal with 3 decimal places
カテゴリ
ヘルプ センター および File Exchange で Printing and Saving についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!