comparison +grid/Mapped.m @ 153:7aee9eba3bb8 feature/grids

Added abstract classes for some different types of grids.
author Jonatan Werpers <jonatan@werpers.com>
date Tue, 22 Dec 2015 11:59:55 +0100
parents
children
comparison
equal deleted inserted replaced
152:276dcccf6155 153:7aee9eba3bb8
1 classdef Mapped < grid.Grid
2 % General grid mapping
3 methods (Abstract)
4 % baseGrid returns the domain grid of the mapping.
5 g = baseGrid(obj);
6
7 % mapping returns the mapped coordinates as a grid.Function
8 m = mapping(obj);
9 end
10 end