comparison +grid/funcToPlotMatrix.m @ 820:501750fbbfdb

Merge with feature/grids
author Jonatan Werpers <jonatan@werpers.com>
date Fri, 07 Sep 2018 14:40:58 +0200
parents 5f75d7094983
children bc2be302df90
comparison
equal deleted inserted replaced
819:fdf0ef9150f4 820:501750fbbfdb
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 F = reshapeToPlotMatrix(gf, g.size());
5 end