view printSize.m @ 670:52a9dedb9171 feature/poroelastic

Add 6th order to D2variable.
author Martin Almquist <malmquist@stanford.edu>
date Fri, 22 Dec 2017 16:38:08 +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