view assert_size.m @ 1087:867307f4d80f feature/laplace_curvilinear_test

Improve comments in LaplCurve.
author Martin Almquist <malmquist@stanford.edu>
date Fri, 29 Mar 2019 14:50:50 -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