Mercurial > repos > public > sbplib
annotate printSize.m @ 255:df3cc9c5dffc operator_remake
Added ordinary 12th order accurate, with D1*D1 as 2nd derivative.
author | Martin Almquist <martin.almquist@it.uu.se> |
---|---|
date | Wed, 07 Sep 2016 15:54:41 +0200 |
parents | 643bc513b8b8 |
children |
rev | line source |
---|---|
0 | 1 function printSize(A) |
85
643bc513b8b8
Wave2DCurve: Fixed error in tau. Also made random guess at fixing theory from paper.
Jonatan Werpers <jonatan@werpers.com>
parents:
40
diff
changeset
|
2 result = size(A); |
643bc513b8b8
Wave2DCurve: Fixed error in tau. Also made random guess at fixing theory from paper.
Jonatan Werpers <jonatan@werpers.com>
parents:
40
diff
changeset
|
3 fprintf('size(%s) => %s\n', inputname(1), toString(result)); |
0 | 4 end |