view printSize.m @ 601:5df7f99206b2 feature/grids

SBPInTimeImplicitFormulation: Fix bug in calculation of forcing function
author Jonatan Werpers <jonatan@werpers.com>
date Thu, 28 Sep 2017 11:14:34 +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