Converting NodalSolution to Matrix
8 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
I have solved a PDE (2 spatial dimensions + time) using the PDE Toolbox. I would like to do plots where I hold one spatial dimension fixed and plot the solution over the remaining spatial dimension and time. It would be trivial to do this if my solution was in the form of a matrix with axes (x,y,t), but it's not clear how to convert the NodalSolution object returned by the PDE solver into such a matrix. Is this possible? If not, is there a simple way to get the kind of plot I mentioned using this object directly?
Thanks!
0 commentaires
Réponses (1)
Shraddha Jain
le 3 Mar 2021
Hi Dylan,
result = solvepde(model,tlist)
the output result is an object. The nodal solution in matrix format can be accessed as,
u = results.NodalSolution;
0 commentaires
Voir également
Catégories
En savoir plus sur PDE Solvers dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!