Mercurial > repos > public > sbplib
comparison +sbp/OpSet.m @ 307:fefb2f9884f7 feature/beams
Merge with default.
author | Jonatan Werpers <jonatan@werpers.com> |
---|---|
date | Fri, 23 Sep 2016 10:40:12 +0200 |
parents | 21a180acbd49 |
children | 25b01643e438 |
comparison
equal
deleted
inserted
replaced
306:8368beb0d1b3 | 307:fefb2f9884f7 |
---|---|
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 |
6 x % Grid | |
9 end | 7 end |
10 | 8 |
11 methods (Abstract) | |
12 | |
13 end | |
14 | |
15 methods (Abstract, Static) | |
16 lambda = smallestGrid() | |
17 end | |
18 end | 9 end |