view printSize.m @ 262:23051a86faa4 operator_remake

Removed static method smallestGrid
author Martin Almquist <martin.almquist@it.uu.se>
date Thu, 08 Sep 2016 15:37: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