Retrieving data for a calculated plot
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Gavin Seddon
am 17 Mai 2022
Beantwortet: Gavin Seddon
am 2 Aug. 2022
Hello
I created the differential plot attached with Matlab. Is it possible to retrieve the derivative data it used or do I need to calculate it myself?
G
5 Kommentare
Star Strider
am 31 Jul. 2022
I looked at the data in this file.
One way to recover the 5003 Line objects is:
filename = '1wavevec.fig';
F = openfig(filename);
Ax = gca;
Lines = findobj(gca, 'Type','Line')
for k=1:numel(Lines)
xv{k,:} = Lines(k).XData;
yv{k,:} = Lines(k).YData;
end
However the rest of it makes essentially no sense. It appears to be entirely made up of collinear quiver arrows and nothing else. I have no idea how to recover any information other than the quiver arrows that comprise each line.
It will likely be necessary to calculate whatever data were used to create this plot and use that, or re-plot the existing data without using the quiver function. I doubt that anything meaningful can be recovered from the file as it exists here.
.
Akzeptierte Antwort
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Specifying Target for Graphics Output finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!