Show
Ignore:
Timestamp:
08/16/09 18:13:31 (15 years ago)
Author:
smidl
Message:

removal of unused functions _e() and samplecond(,) and added documentation lines

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • library/bdm/math/square_mat.cpp

    r495 r536  
    6464 
    6565ldmat::ldmat ( const mat &V ) : sqmat ( V.cols() ) { 
    66 //TODO check if correct!! Based on heuristic observation of lu() 
    6766 
    6867        it_assert_debug ( dim == V.rows(), "ldmat::ldmat matrix V is not square!" ); 
    6968 
    7069        // L and D will be allocated by ldform() 
    71  
    7270        //Chol is unstable 
    7371        this->ldform ( chol ( V ), ones ( dim ) ); 
    74 //      this->ldform(ul(V),ones(dim)); 
    7572} 
    7673