view printSize.m @ 48:b21c53ff61d4

Made setup_1d_plot behave more like matlabs plot().
author Jonatan Werpers <jonatan@werpers.com>
date Thu, 05 Nov 2015 16:31:53 -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