data from figures without data
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
DARLINGTON ETAJE
el 3 de Sept. de 2019
Respondida: Subhadeep Koley
el 6 de Sept. de 2019
Hello family,
how do I extract experimental values or data from a figure using matlab
1 comentario
Adam Danz
el 3 de Sept. de 2019
This is a common question with lots of existing answers in this forum.
Check out this link for advice on how to get help in this forum
Respuesta aceptada
Subhadeep Koley
el 6 de Sept. de 2019
The following code might help.
% Open your figure
fig = openfig('example.fig');
% Find Xdata and YData objects
dataObjs = findobj(fig,'-property','YData');
y1 = dataObjs(1).YData;
dataObjs = findobj(fig,'-property','XData');
x1 = dataObjs(1).XData;
0 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Interactive Control and Callbacks en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!