view +grid/funcToMatrix.m @ 166:7cb97c1988d9 feature/grids

Updated function name reference.
author Jonatan Werpers <jonatan@werpers.com>
date Tue, 23 Feb 2016 10:55:46 +0100
parents 51aaf67a7df5
children 5f75d7094983
line wrap: on
line source

% Converts a gridfunction to a matrix
% Takes a grid function and and a structured grid.
function F = funcToMatrix(g, gf)
    reshapeRowMaj(gf, g.size());
end