view reshapeKronVector.m @ 164:772365e2cf96 feature/grids

Correct method signatures in Grid.m
author Jonatan Werpers <jonatan@werpers.com>
date Mon, 22 Feb 2016 15:56:33 +0100
parents 51aaf67a7df5
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