view assert_size.m @ 771:2ffa82fb5172 feature/grids

Make setup_time_quantity_plot() accept sparse vectors
author Jonatan Werpers <jonatan@werpers.com>
date Tue, 17 Jul 2018 16:39:17 -0700
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