Mercurial > repos > public > sbplib
comparison +sbp/OpSet.m @ 263:21a180acbd49 operator_remake
Renamed standard class to D2Standard etc, Rewrote class properties.
author | Martin Almquist <martin.almquist@it.uu.se> |
---|---|
date | Thu, 08 Sep 2016 17:50:30 +0200 |
parents | 23051a86faa4 |
children | 25b01643e438 |
comparison
equal
deleted
inserted
replaced
262:23051a86faa4 | 263:21a180acbd49 |
---|---|
1 classdef (Abstract) OpSet | 1 classdef (Abstract) OpSet |
2 properties (Abstract) | 2 properties (Abstract) |
3 norms % Struct containing norm matrices such as H,Q, M | |
4 boundary % Struct contanging vectors for boundry point approximations | |
5 derivatives % Struct containging differentiation operators | |
6 borrowing % Struct with borrowing limits for different norm matrices | 3 borrowing % Struct with borrowing limits for different norm matrices |
7 m % Number of grid points. | 4 m % Number of grid points. |
8 h % Step size | 5 h % Step size |
9 end | 6 x % Grid |
10 | |
11 methods (Abstract) | |
12 | |
13 end | 7 end |
14 | 8 |
15 end | 9 end |