Mercurial > repos > public > sbplib
annotate +grid/funcToPlotMatrix.m @ 1331:60c875c18de3 feature/D2_boundary_opt
Merge with feature/poroelastic for Elastic schemes
author | Vidar Stiernström <vidar.stiernstrom@it.uu.se> |
---|---|
date | Thu, 10 Mar 2022 16:54:26 +0100 |
parents | bc2be302df90 |
children |
rev | line source |
---|---|
163
51aaf67a7df5
Fixed naming and added functions for converting vectors to matrices for structured grid.
Jonatan Werpers <jonatan@werpers.com>
parents:
diff
changeset
|
1 % Converts a gridfunction to a plot matrix |
1276
bc2be302df90
Fix typos in comments
Martin Almquist <malmquist@stanford.edu>
parents:
238
diff
changeset
|
2 % Takes a grid function and a structured grid. |
163
51aaf67a7df5
Fixed naming and added functions for converting vectors to matrices for structured grid.
Jonatan Werpers <jonatan@werpers.com>
parents:
diff
changeset
|
3 function F = funcToPlotMatrix(g, gf) |
238
5f75d7094983
grid: Fixed returns of funcToXXX
Jonatan Werpers <jonatan@werpers.com>
parents:
163
diff
changeset
|
4 F = reshapeToPlotMatrix(gf, g.size()); |
163
51aaf67a7df5
Fixed naming and added functions for converting vectors to matrices for structured grid.
Jonatan Werpers <jonatan@werpers.com>
parents:
diff
changeset
|
5 end |