Converting NodalSolution to Matrix

조회 수: 11 (최근 30일)
Dylan Green
Dylan Green 2021년 2월 25일
답변: Shraddha Jain 2021년 3월 3일
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!

답변 (1개)

Shraddha Jain
Shraddha Jain 2021년 3월 3일
Hi Dylan,
When you solve a Partial Differential Equation using solvepde as,
result = solvepde(model,tlist)
the output result is an object. The nodal solution in matrix format can be accessed as,
u = results.NodalSolution;
Please refer to the examples in the solvepde documentation for more information on how to plot u.

카테고리

Help CenterFile Exchange에서 General PDEs에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by