Mercurial > repos > public > sbplib
view hgRevision.m @ 1131:ea225a4659fe feature/laplace_curvilinear_test
Add 2d tests for derivative of delta function, and confirm that they work.
author | Martin Almquist <malmquist@stanford.edu> |
---|---|
date | Wed, 22 May 2019 15:31:26 -0700 |
parents | fd85412c7a99 |
children |
line wrap: on
line source
% Returns the short mercurial revision Id. % ok is false if there are uncommited changes. function [revId, ok] = hgRevision() [~, s] = system('hg id -i'); revId = strtrim(s); ok = s(end) ~= '+'; end