data from figures without data
3 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
DARLINGTON ETAJE
am 3 Sep. 2019
Beantwortet: Subhadeep Koley
am 6 Sep. 2019
Hello family,
how do I extract experimental values or data from a figure using matlab
1 Kommentar
Adam Danz
am 3 Sep. 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
Akzeptierte Antwort
Subhadeep Koley
am 6 Sep. 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 Kommentare
Weitere Antworten (0)
Siehe auch
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!