view assert_size.m @ 766:afd20f023928 feature/grids

Rename assert_size to assertSize
author Jonatan Werpers <jonatan@werpers.com>
date Tue, 26 Jun 2018 13:57:15 +0200
parents 48b6fb693025
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