view +grid/Structured.m @ 168:ba1ae5b2c45e feature/grids

grid.Cartesian: Added methods and test to fulfilll abstract class.
author Jonatan Werpers <jonatan@werpers.com>
date Wed, 24 Feb 2016 15:01:54 +0100
parents 73bc43c7379e
children f7bb2a94d291
line wrap: on
line source

classdef Structured < grid.Grid
    methods (Abstract)
        % Returns the size of the grid in each dimension m = [mx my mz ...]
        m = size(obj)
    end
end