Mercurial > repos > public > sbplib
comparison +grid/Mapped.m @ 820:501750fbbfdb
Merge with feature/grids
author | Jonatan Werpers <jonatan@werpers.com> |
---|---|
date | Fri, 07 Sep 2018 14:40:58 +0200 |
parents | 62b5f3c34bcb |
children |
comparison
equal
deleted
inserted
replaced
819:fdf0ef9150f4 | 820:501750fbbfdb |
---|---|
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 |