comparison +sbp/D2Standard.m @ 401:9ff24a14f9ef feature/beams

Merge clarity changes for SBPInTime.
author Jonatan Werpers <jonatan@werpers.com>
date Thu, 02 Feb 2017 10:07:49 +0100
parents 4fd5bfe5d0bb
children bc78157c89cb 5f4540e13f9b
comparison
equal deleted inserted replaced
400:14f2be4fe9c1 401:9ff24a14f9ef
12 d1_r % Right boundary first derivative 12 d1_r % Right boundary first derivative
13 m % Number of grid points. 13 m % Number of grid points.
14 h % Step size 14 h % Step size
15 x % grid 15 x % grid
16 borrowing % Struct with borrowing limits for different norm matrices 16 borrowing % Struct with borrowing limits for different norm matrices
17 17
18 end 18 end
19 19
20 methods 20 methods
21 function obj = D2Standard(m,lim,order) 21 function obj = D2Standard(m,lim,order)
22 22
61 else 61 else
62 error('Invalid operator order %d.',order); 62 error('Invalid operator order %d.',order);
63 end 63 end
64 64
65 obj.m = m; 65 obj.m = m;
66
67 end 66 end
68 end 67 end
69
70
71 end 68 end
72 69
73 70
74 71
75 72