diff printSize.m @ 40:54d3ab296ba0

Added Dictionary class. Added string conversions for a bunch of types. Deprecated some replaced functions.
author Jonatan Werpers <jonatan@werpers.com>
date Mon, 12 Oct 2015 10:38:53 +0200
parents 48b6fb693025
children 643bc513b8b8
line wrap: on
line diff
--- a/printSize.m	Fri Oct 09 10:52:42 2015 +0200
+++ b/printSize.m	Mon Oct 12 10:38:53 2015 +0200
@@ -1,4 +1,5 @@
 function printSize(A)
+    warning('Deprecated! Use printExpr() instead!');
     s = size(A);
     fprintf('%8s has size: [%d, %d]\n',inputname(1),s(1),s(2));
 end
\ No newline at end of file