view +grid/Mapped.m @ 709:f004b9e9d17a feature/quantumTriangles

changed a sign in penalty and closure, most probably everything blows up now...
author Ylva Rydin <ylva.rydin@telia.com>
date Tue, 21 Nov 2017 17:04:07 +0100
parents 62b5f3c34bcb
children
line wrap: on
line source

classdef Mapped < grid.Grid
    % General grid mapping
    methods (Abstract)
        % logicalGrid returns the domain grid of the mapping.
        g = logicalGrid(obj);

        % mapping returns the mapped coordinates as a N x D component matrix
        m = mapping(obj);
    end
end