view +sbp/InterpOps.m @ 1283:70939ea9a71f feature/poroelastic

Bugfix in Elastic2dVariable
author Martin Almquist <malmquist@stanford.edu>
date Tue, 23 Jun 2020 13:31:01 -0700
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