Skip to content

Instantly share code, notes, and snippets.

@Pyknic
Created October 3, 2018 16:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Pyknic/130bbc156c42390b3b6ec72364e605fa to your computer and use it in GitHub Desktop.
Save Pyknic/130bbc156c42390b3b6ec72364e605fa to your computer and use it in GitHub Desktop.
function AssertSize(name, matrix, sizes)
if ~isequal(size(matrix), sizes)
error('Expected %s to have size %s, but was %s.', name, mat2str(sizes), mat2str(size(matrix)));
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment