view printSize.m @ 46:dd4db0c97a02

Updated SolutionFile to use the new toString Method.
author Jonatan Werpers <jonatan@werpers.com>
date Thu, 05 Nov 2015 16:29:24 -0800
parents 54d3ab296ba0
children 643bc513b8b8
line wrap: on
line source

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