comparison +grid/Grid.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 685ba6e6c679
children c2db0294f8ed
comparison
equal deleted inserted replaced
163:51aaf67a7df5 164:772365e2cf96
9 9
10 % points returns a n x d matrix containing the coordinates for all points. 10 % points returns a n x d matrix containing the coordinates for all points.
11 X = points(obj) 11 X = points(obj)
12 12
13 % Restricts the grid function gf on obj to the subgrid g. 13 % Restricts the grid function gf on obj to the subgrid g.
14 gf = restrictFunc(gf, g) 14 gf = restrictFunc(obj, gf, g)
15 15
16 % Projects the grid function gf on obj to the grid g. 16 % Projects the grid function gf on obj to the grid g.
17 gf = projectFunc(gf, g) 17 gf = projectFunc(obj, gf, g)
18 end 18 end
19 end 19 end
20 20
21 21
22 %% Should it be able to return a cell size aswell? For an equidistant grid this would be know 22 %% Should it be able to return a cell size aswell? For an equidistant grid this would be know