Mercurial > repos > public > sbplib
comparison +grid/Mapped.m @ 886:8894e9c49e40 feature/timesteppers
Merge with default for latest changes
author | Vidar Stiernström <vidar.stiernstrom@it.uu.se> |
---|---|
date | Thu, 15 Nov 2018 16:36:21 -0800 |
parents | 62b5f3c34bcb |
children |
comparison
equal
deleted
inserted
replaced
816:b5e5b195da1e | 886:8894e9c49e40 |
---|---|
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 |