view printSize.m @ 69:f87003695677

Moved drawno out of plot update functions for huge performance boost.
author Jonatan Werpers <jonatan@werpers.com>
date Mon, 23 Nov 2015 13:54:01 +0100
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