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

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

Added original make3d

File size: 220 bytes
Line 
1function f = flops_det(n)
2% FLOPS_DET     Flops for matrix determinant.
3% FLOPS_DET(n) returns the number of flops for det(eye(n)).
4
5if n == 1
6  f = 1;
7else
8  % this is from logdet
9  f = flops_chol(n) + n;
10end
Note: See TracBrowser for help on using the repository browser.