view printSize.m @ 597:8a1c36bbb977 feature/utux2D

Merge with better multiblock defs.
author Martin Almquist <malmquist@stanford.edu>
date Tue, 26 Sep 2017 13:28:49 -0700
parents 643bc513b8b8
children
line wrap: on
line source

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