view assert_size.m @ 364:44e9f7c16eb4 martin-thesis-plots

Closing Martins bad branch to the tune of 20 whip lashes.
author Martin Almquist <martin.almquist@it.uu.se>
date Tue, 20 Dec 2016 15:45:06 +0100
parents 48b6fb693025
children afd20f023928
line wrap: on
line source

% Assert that array A has the size s.
function assert_size(A,s)
    errmsg = sprintf('Expected %s to have size %s, got: %s',inputname(1), format_vector(s), format_vector(size(A)));
    assert(all(size(A) == s),errmsg);
end

function str = format_vector(a)
    l = length(a);
    str = sprintf('[%d',a(1));

    for i = 2:l
        str = [str sprintf(', %d',a(i))];
    end

    str = [str ']'];
end