view +sbp/OpSet.m @ 330:25b01643e438 feature/beams

Added a string method to OpSet.
author Jonatan Werpers <jonatan@werpers.com>
date Thu, 29 Sep 2016 12:56:37 +0200
parents 21a180acbd49
children
line wrap: on
line source

classdef (Abstract) OpSet
    properties (Abstract)
        borrowing % Struct with borrowing limits for different norm matrices
        m % Number of grid points.
        h % Step size
        x % Grid
    end

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

end