view +sbp/InterpOps.m @ 1344:b4e5e45bd239 feature/D2_boundary_opt

Remove round off zeros from D2Nonequidistant operators
author Vidar Stiernström <vidar.stiernstrom@it.uu.se>
date Sat, 15 Oct 2022 15:48:20 +0200
parents 4291731570bb
children
line wrap: on
line source

classdef (Abstract) InterpOps
    properties (Abstract)
        Iu2v % Interpolation operator(s) from "u" to "v"
        Iv2u % Interpolation operator(s) from "v" to "u"
    end

    methods (Abstract)
        % Returns a string representation of the type of operator.
        str = string(obj)
    end

end