Mercurial > repos > public > sbplib
comparison +grid/Mapped.m @ 427:a613960a157b feature/quantumTriangles
merged with feature/beams
author | Ylva Rydin <ylva.rydin@telia.com> |
---|---|
date | Thu, 26 Jan 2017 15:59:25 +0100 |
parents | 62b5f3c34bcb |
children |
comparison
equal
deleted
inserted
replaced
426:29944ea7674b | 427:a613960a157b |
---|---|
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 |