comparison +grid/funcToPlotMatrix.m @ 163:51aaf67a7df5 feature/grids

Fixed naming and added functions for converting vectors to matrices for structured grid.
author Jonatan Werpers <jonatan@werpers.com>
date Mon, 22 Feb 2016 13:55:19 +0100
parents
children 5f75d7094983
comparison
equal deleted inserted replaced
162:c75c03f692b3 163:51aaf67a7df5
1 % Converts a gridfunction to a plot matrix
2 % Takes a grid function and and a structured grid.
3 function F = funcToPlotMatrix(g, gf)
4 reshapeToPlotMatrix(gf, g.size());
5 end