view assert_size.m @ 1099:d4fe089b2c4a feature/timesteppers

Remove unused properties from rk.Explicit
author Jonatan Werpers <jonatan@werpers.com>
date Wed, 23 Jan 2019 10:02:13 +0100
parents afd20f023928
children
line wrap: on
line source

% Assert that array A has the size s.
function assert_size(A,s)
    warning('Use assertSize() instead!')
    assertSize(A,s);
end