Mercurial > repos > public > sbplib
comparison +scheme/Laplace1d.m @ 1079:ae4b090b5299
Bugfix missing semi-colon in Laplace1d.
author | Martin Almquist <malmquist@stanford.edu> |
---|---|
date | Wed, 20 Feb 2019 16:14:15 -0800 |
parents | 0c504a21432d |
children | a20fc67e9ac0 |
comparison
equal
deleted
inserted
replaced
1078:532b58a9e849 | 1079:ae4b090b5299 |
---|---|
121 % boundary -- string | 121 % boundary -- string |
122 function o = getBoundaryOperator(obj, op, boundary) | 122 function o = getBoundaryOperator(obj, op, boundary) |
123 assertIsMember(op, {'e', 'd'}) | 123 assertIsMember(op, {'e', 'd'}) |
124 assertIsMember(boundary, {'l', 'r'}) | 124 assertIsMember(boundary, {'l', 'r'}) |
125 | 125 |
126 o = obj.([op, '_', boundary]) | 126 o = obj.([op, '_', boundary]); |
127 end | 127 end |
128 | 128 |
129 % Returns square boundary quadrature matrix, of dimension | 129 % Returns square boundary quadrature matrix, of dimension |
130 % corresponding to the number of boundary points | 130 % corresponding to the number of boundary points |
131 % | 131 % |