Changeset 772
- Timestamp:
- 01/12/10 20:25:54 (15 years ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
library/bdm/math/chmat.h
r766 r772 76 76 Some templates require this constructor to compile, but 77 77 it shouldn't actually be called. 78 \note may be numerically unstable 78 79 */ 79 chmat ( const chmat &M, const ivec &perm ) NOT_IMPLEMENTED_VOID; 80 chmat ( const chmat &M, const ivec &perm ): sqmat(perm.length()) { 81 mat complete = M.to_mat (); 82 mat subs = complete.get_cols(perm); 83 Ch = chol(subs.get_rows(perm)); 84 } 80 85 81 86 //! Access function