view +grid/Structured.m @ 226:bd99ea1fc733 feature/beams

Clearer messages.
author Jonatan Werpers <jonatan@werpers.com>
date Thu, 30 Jun 2016 14:10:26 +0200
parents 513019e3d855
children
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); % Is this a good idea? Isn't immersed a structured grid?
        h = scaling(obj);
    end
end