mttAssert.m 131 B

12345678
  1. function mttAssert(rule,msg)
  2. if ~isempty(rule)
  3. if ~rule
  4. error(['MTT: ',msg]) ;
  5. end
  6. end