comparison +grid/Cartesian.m @ 188:c5ca9bbfed41 feature/grids

Added methods to hande boundaries to Grid. Added failing tests and method stubs.
author Jonatan Werpers <jonatan@werpers.com>
date Fri, 04 Mar 2016 17:19:18 +0100
parents f7bb2a94d291
children 7c1d3fc33f90
comparison
equal deleted inserted replaced
187:770da87a6dc4 188:c5ca9bbfed41
120 120
121 % Projects the grid function gf on obj to the grid g. 121 % Projects the grid function gf on obj to the grid g.
122 function gf = projectFunc(obj, gf, g) 122 function gf = projectFunc(obj, gf, g)
123 error('grid:Cartesian:NotImplemented') 123 error('grid:Cartesian:NotImplemented')
124 end 124 end
125
126 % Return the names of all boundaries in this grid.
127 function bs = getBoundaryNames(obj)
128 bs = [];
129 end
130
131 % Return coordinates for the given boundary
132 function b = getBoundary(obj, name)
133 b = [];
134 end
135
125 end 136 end
126 end 137 end