Mercurial > repos > public > sbplib
comparison +sbp/InterpOps.m @ 863:77aa40da2008 bcSetupExperiment
Merge with feature/grids
author | Jonatan Werpers <jonatan@werpers.com> |
---|---|
date | Wed, 25 Jul 2018 15:17:47 -0700 |
parents | c923fe6197ff |
children | 4291731570bb |
comparison
equal
deleted
inserted
replaced
862:517d6019d63c | 863:77aa40da2008 |
---|---|
1 classdef (Abstract) InterpOps | |
2 properties (Abstract) | |
3 % C and F may refer to coarse and fine, but it's not a must. | |
4 IC2F % Interpolation operator from "C" to "F" | |
5 IF2C % Interpolation operator from "F" to "C" | |
6 | |
7 end | |
8 | |
9 methods (Abstract) | |
10 % Returns a string representation of the type of operator. | |
11 str = string(obj) | |
12 end | |
13 | |
14 end |