Mercurial > repos > public > sbplib
diff +grid/Cartesian.m @ 756:f891758ad7a4 feature/d1_staggered
Merge with feature/utux2d.
author | Martin Almquist <malmquist@stanford.edu> |
---|---|
date | Sat, 16 Jun 2018 14:30:45 -0700 |
parents | fcf004066ea9 |
children | 0ef96fcdc028 |
line wrap: on
line diff
--- a/+grid/Cartesian.m Fri Jun 15 18:10:26 2018 -0700 +++ b/+grid/Cartesian.m Sat Jun 16 14:30:45 2018 -0700 @@ -5,6 +5,7 @@ m % Number of points in each direction x % Cell array of vectors with node placement for each dimension. h % Spacing/Scaling + lim % Cell array of left and right boundaries for each dimension. end % General d dimensional grid with n points @@ -27,6 +28,7 @@ end obj.h = []; + obj.lim = []; end % n returns the number of points in the grid function o = N(obj)