comparison +sbp/InterpOps.m @ 955:92c3c170e90b

Merged in feature/utux2D (pull request #11) Feature/utux2D Approved-by: Jonatan Werpers <jonatan.werpers@it.uu.se> Approved-by: Martin Almquist <malmquist@stanford.edu> Approved-by: Vidar Stiernström <vidar.stiernstrom@it.uu.se>
author Jonatan Werpers <jonatan.werpers@it.uu.se>
date Mon, 10 Dec 2018 08:29:41 +0000
parents 4291731570bb
children
comparison
equal deleted inserted replaced
951:a6c5e73ff44e 955:92c3c170e90b
1 classdef (Abstract) InterpOps 1 classdef (Abstract) InterpOps
2 properties (Abstract) 2 properties (Abstract)
3 % C and F may refer to coarse and fine, but it's not a must. 3 Iu2v % Interpolation operator(s) from "u" to "v"
4 IC2F % Interpolation operator from "C" to "F" 4 Iv2u % Interpolation operator(s) from "v" to "u"
5 IF2C % Interpolation operator from "F" to "C"
6
7 end 5 end
8 6
9 methods (Abstract) 7 methods (Abstract)
10 % Returns a string representation of the type of operator. 8 % Returns a string representation of the type of operator.
11 str = string(obj) 9 str = string(obj)