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

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

Added original make3d

File size: 252 bytes
Line 
1function f = flops_inv(n)
2% FLOPS_INV    Flops for matrix inversion.
3% FLOPS_INV(n) returns the number of flops for inv(eye(n)).
4% It assumes the matrix is positive definite, since this allows the
5% fastest inverse.
6
7f = flops_solve(n,n,n);
8
9
Note: See TracBrowser for help on using the repository browser.