source: proiecte/pmake3d/make3d_original/Make3dSingleImageStanford_version0.1/third_party/lightspeed/assert.m @ 37

Last change on this file since 37 was 37, checked in by (none), 14 years ago

Added original make3d

  • Property svn:executable set to *
File size: 132 bytes
Line 
1function assert(condition,message)
2
3if ~condition
4  if nargin < 2
5    error('Assertion failed');
6  end
7  error(message)
8end
Note: See TracBrowser for help on using the repository browser.