view printSize.m @ 611:5a7f7f206594 feature/grids

Remove diffSymfun, matlab already does this
author Jonatan Werpers <jonatan@werpers.com>
date Mon, 09 Oct 2017 10:51:48 +0200
parents 643bc513b8b8
children
line wrap: on
line source

function printSize(A)
    result = size(A);
    fprintf('size(%s) => %s\n', inputname(1), toString(result));
end