view assert_size.m @ 1079:ae4b090b5299

Bugfix missing semi-colon in Laplace1d.
author Martin Almquist <malmquist@stanford.edu>
date Wed, 20 Feb 2019 16:14:15 -0800
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