view printSize.m @ 676:9926efb39330 feature/poroelastic

Clean up dilation BC code.
author Martin Almquist <malmquist@stanford.edu>
date Thu, 18 Jan 2018 14:36:59 -0800
parents 643bc513b8b8
children
line wrap: on
line source

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