How can I plot a 2D plot from a 3D plot?
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Laura Monreal
am 27 Sep. 2016
Kommentiert: Laura Monreal
am 29 Sep. 2016
Hello,
I am using the next code to plot the temperature colors in a 2 Dimensional geometry using the pdeplot
if true
figure;
pdeplot(model,'xydata',u(:,end),'contour','on');
axis auto
title (sprintf('Temperature at Final Time (%g seconds)',tfinal))
xlabel 'x (m)'
ylabel 'y(m)'
end
Do you know how I can extract 2D plot from there? I would like to plot 1 dimension vs temperature.
Thank you very much in advance,
L
0 Kommentare
Akzeptierte Antwort
KSSV
am 27 Sep. 2016
when you run this model, the required output variables are stored in workspace. They are structures, the desired result can be extracted from here.
Weitere Antworten (0)
Siehe auch
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!