source: proiecte/pmake3d/make3d_original/Make3dSingleImageStanford_version0.1/third_party/missing-data/setdiff.m @ 37

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

Added original make3d

File size: 94 bytes
Line 
1function c = setdiff(a,b)
2c = [];
3for i = a
4  if ~ member(i,b)
5     c = [c,i];
6  end
7end
Note: See TracBrowser for help on using the repository browser.