Mercurial > repos > public > sbplib
annotate +grid/funcToMatrix.m @ 835:008496ca38f3 feature/burgers1d
Compute the residual in between each runge-kutta stage.
Note: It is not clear whether the correct residual is used when computing the stages. Must investigate further.
author | Vidar Stiernström <vidar.stiernstrom@it.uu.se> |
---|---|
date | Thu, 13 Sep 2018 18:14:54 +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 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 = funcToMatrix(g, gf) |
238
5f75d7094983
grid: Fixed returns of funcToXXX
Jonatan Werpers <jonatan@werpers.com>
parents:
166
diff
changeset
|
4 F = reshapeRowMaj(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 |