How do I get object data from a FIG file, such as X and Y data?
Mostrar comentarios más antiguos
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 comentarios
%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
el 14 de Ag. de 2012
GS76
el 10 de Feb. de 2020
Thank you MRR!
Your reply helped me greatly.
Much appreciated.
afiq hassan
el 25 de Abr. de 2020
But what if I want to find x values using y axis?
Respuesta aceptada
Más respuestas (2)
uncung fgv
el 14 de Ag. de 2012
0 votos
asma chaudhry
el 11 de Sept. de 2018
0 votos
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
Categorías
Más información sobre Printing and Saving en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!