view reshapeKronVector.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 c75c03f692b3
children
line wrap: on
line source

% Takes a grid function and reshapes it into a matrix of shape m.
function F = reshapeKronVector(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