Mercurial > repos > public > sbplib
comparison +grid/Mapped.m @ 170:62b5f3c34bcb feature/grids
Implemented Curvilinear and equdistantCurvilinear.
author | Jonatan Werpers <jonatan@werpers.com> |
---|---|
date | Thu, 25 Feb 2016 11:10:25 +0100 |
parents | +grid/Curvilinear.m@ce10ebde3123 |
children |
comparison
equal
deleted
inserted
replaced
169:ba8adcaf4681 | 170:62b5f3c34bcb |
---|---|
1 classdef Mapped < grid.Grid | |
2 % General grid mapping | |
3 methods (Abstract) | |
4 % logicalGrid returns the domain grid of the mapping. | |
5 g = logicalGrid(obj); | |
6 | |
7 % mapping returns the mapped coordinates as a N x D component matrix | |
8 m = mapping(obj); | |
9 end | |
10 end |