comparison +sbp/OpSet.m @ 29:32b39dc44474

Removed repository inside +sbp to make it part of the root repo.
author Jonatan Werpers <jonatan@werpers.com>
date Mon, 28 Sep 2015 08:47:28 +0200
parents
children 23051a86faa4
comparison
equal deleted inserted replaced
28:16acb2775aca 29:32b39dc44474
1 classdef (Abstract) OpSet
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
7 m % Number of grid points.
8 h % Step size
9 end
10
11 methods (Abstract)
12
13 end
14
15 methods (Abstract, Static)
16 lambda = smallestGrid()
17 end
18 end