Mercurial > repos > public > sbplib
comparison +grid/Mapped.m @ 832:5573913a0949 feature/burgers1d
Merged with default, and updated +scheme/Burgers1D accordingly
author | Vidar Stiernström <vidar.stiernstrom@it.uu.se> |
---|---|
date | Tue, 11 Sep 2018 15:58:35 +0200 |
parents | 62b5f3c34bcb |
children |
comparison
equal
deleted
inserted
replaced
831:d0934d1143b7 | 832:5573913a0949 |
---|---|
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 |