view printSize.m @ 113:a4e1608ae980

1d plot: Made it possible to have automatix axes.
author Jonatan Werpers <jonatan@werpers.com>
date Fri, 11 Dec 2015 09:31:46 +0100
parents 643bc513b8b8
children
line wrap: on
line source

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