comparison +grid/Structured.m @ 174:513019e3d855 feature/grids

Added a comment regardning structured grids.
author Jonatan Werpers <jonatan@werpers.com>
date Fri, 26 Feb 2016 16:06:52 +0100
parents f7bb2a94d291
children
comparison
equal deleted inserted replaced
173:f7bb2a94d291 174:513019e3d855
1 classdef Structured < grid.Grid 1 classdef Structured < grid.Grid
2 methods (Abstract) 2 methods (Abstract)
3 % Returns the size of the grid in each dimension m = [mx my mz ...] 3 % Returns the size of the grid in each dimension m = [mx my mz ...]
4 m = size(obj); 4 m = size(obj); % Is this a good idea? Isn't immersed a structured grid?
5 h = scaling(obj); 5 h = scaling(obj);
6 end 6 end
7 end 7 end