view printSize.m @ 213:15d604e4e1a1 feature/beams

Removed the data paramter from boundary_condition prototype.
author Jonatan Werpers <jonatan@werpers.com>
date Wed, 22 Jun 2016 14:40:23 +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