view +grid/Structured.m @ 692:dd3e9a0f5032 feature/quantumTriangles

added jacobian to stichshemes
author Ylva Rydin <ylva.rydin@telia.com>
date Fri, 15 Sep 2017 09:21:29 +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