comparison +grid/funcToMatrix.m @ 161:73bc43c7379e feature/grids

Added function for reshaping grid functions. Added size() method to structured grid.
author Jonatan Werpers <jonatan@werpers.com>
date Mon, 22 Feb 2016 13:20:55 +0100
parents
children
comparison
equal deleted inserted replaced
160:c700b26ad304 161:73bc43c7379e
1 % Takes a grid function and reshapes it into a matrix of shape m.
2 % Called by class methods.
3 function F = funcToMatrix(gf, m)
4 D = length(m);
5
6 if D == 1
7 F = gf;
8 return
9 end
10
11 % Reshape and reverse order of indecies
12 F = permute(reshape(gf, rot90(m,2)), D:-1:1);
13 end