Mercurial > repos > public > sbplib
view assert_size.m @ 409:42c4f0b545d6 feature/SBPInTimeGauss
Remove m as input to implementation function. Fix error message for invalid m to D1Gauss
author | Jonatan Werpers <jonatan@werpers.com> |
---|---|
date | Tue, 07 Feb 2017 13:49:46 +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