source: proiecte/pmake3d/make3d_original/Make3dSingleImageStanford_version0.1/third_party/BlueCCal/MultiCamSelfCal/MartinecPajdla/utils/comb.m @ 37

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

Added original make3d

File size: 98 bytes
Line 
1%returns combination number n over k
2function r = comb(n,k)
3
4r=1;
5for i=1:k
6  r=r*(n-i+1)/i;
7end
8
Note: See TracBrowser for help on using the repository browser.