Mercurial > repos > public > sbplib
diff printSize.m @ 85:643bc513b8b8
Wave2DCurve: Fixed error in tau. Also made random guess at fixing theory from paper.
author | Jonatan Werpers <jonatan@werpers.com> |
---|---|
date | Mon, 30 Nov 2015 11:41:34 +0100 |
parents | 54d3ab296ba0 |
children |
line wrap: on
line diff
--- a/printSize.m Fri Nov 27 10:06:10 2015 +0100 +++ b/printSize.m Mon Nov 30 11:41:34 2015 +0100 @@ -1,5 +1,4 @@ function printSize(A) - warning('Deprecated! Use printExpr() instead!'); - s = size(A); - fprintf('%8s has size: [%d, %d]\n',inputname(1),s(1),s(2)); + result = size(A); + fprintf('size(%s) => %s\n', inputname(1), toString(result)); end \ No newline at end of file