view printSize.m @ 41:910a05dcdfdf

Added Rk4 as it should be.
author Jonatan Werpers <jonatan@werpers.com>
date Thu, 05 Nov 2015 16:06:06 -0800
parents 54d3ab296ba0
children 643bc513b8b8
line wrap: on
line source

function printSize(A)
    warning('Deprecated! Use printExpr() instead!');
    s = size(A);
    fprintf('%8s has size: [%d, %d]\n',inputname(1),s(1),s(2));
end