Mercurial > repos > public > sbplib
view hgRevision.m @ 999:337c4d1dcef5 feature/getBoundaryOp
Fix overlooked Schrodinger1d scheme.
author | Martin Almquist <malmquist@stanford.edu> |
---|---|
date | Sat, 12 Jan 2019 13:44:08 -0800 |
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