view +grid/Structured.m @ 1244:745dc1f1a069 feature/dirac_discr

Use assertType instead of assert(isa(...))
author Jonatan Werpers <jonatan@werpers.com>
date Wed, 20 Nov 2019 20:22:53 +0100
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