Mercurial > repos > public > sbplib
view +grid/funcToMatrix.m @ 1032:1a5c8723c9be rv-interpolation
Created a new branch for attempting to improve rv, via interpolation
author | Vidar Stiernström <vidar.stiernstrom@it.uu.se> |
---|---|
date | Thu, 17 Jan 2019 10:42:14 +0100 |
parents | 5f75d7094983 |
children | bc2be302df90 |
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) F = reshapeRowMaj(gf, g.size()); end