Mercurial > repos > public > sbplib
view +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 |
line wrap: on
line source
% Takes a grid function and reshapes it into a matrix of shape m. % Called by class methods. function F = funcToMatrix(gf, m) D = length(m); if D == 1 F = gf; return end % Reshape and reverse order of indecies F = permute(reshape(gf, rot90(m,2)), D:-1:1); end