view printSize.m @ 43:a2b95af82f68

Corrected description of saveeps.m
author Jonatan Werpers <jonatan@werpers.com>
date Thu, 05 Nov 2015 16:24:20 -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