view printSize.m @ 396:3fdfad20037e feature/SBPinTimeClarity

Remove whitespace.
author Jonatan Werpers <jonatan@werpers.com>
date Thu, 02 Feb 2017 09:46:22 +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