Mercurial > repos > public > sbplib
annotate +grid/funcToPlotMatrix.m @ 572:4a73b2aab91f feature/utux2D
Edit scheme.Utux: Add interface function. Compatible with new grids. Works with Utux_1D_interface.
author | Martin Almquist <martin.almquist@it.uu.se> |
---|---|
date | Thu, 31 Aug 2017 14:57:34 +0200 |
parents | 5f75d7094983 |
children | bc2be302df90 |
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 |
51aaf67a7df5
Fixed naming and added functions for converting vectors to matrices for structured grid.
Jonatan Werpers <jonatan@werpers.com>
parents:
diff
changeset
|
2 % Takes a grid function and and a structured grid. |
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 |