Mercurial > repos > public > sbplib
view printSize.m @ 193:cb65c81d6c87
Added functions to easily time and profile a function.
author | Jonatan Werpers <jonatan@werpers.com> |
---|---|
date | Tue, 24 May 2016 08:42:27 +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