Changeset 1016
- Timestamp:
- Feb 1, 2008, 5:46:08 PM (16 years ago)
- Location:
- trunk/yat/utility
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/yat/utility/SVD.cc
r1000 r1016 26 26 27 27 #include "SVD.h" 28 #include "vector.h" 29 #include "VectorBase.h" 30 28 31 #include <sstream> 29 32 … … 98 101 99 102 100 void SVD::solve(const utility:: vector& b, utility::vector& x)103 void SVD::solve(const utility::VectorBase& b, utility::vector& x) 101 104 { 102 105 int status=gsl_linalg_SV_solve(U_.gsl_matrix_p(), V_.gsl_matrix_p(), -
trunk/yat/utility/SVD.h
r1000 r1016 37 37 namespace yat { 38 38 namespace utility { 39 40 class VectorBase; 39 41 40 42 /** … … 112 114 \throw GSL_error if the underlying GSL function fails. 113 115 */ 114 void solve(const utility:: vector& b, utility::vector& x);116 void solve(const utility::VectorBase& b, utility::vector& x); 115 117 116 118 /**
Note: See TracChangeset
for help on using the changeset viewer.