Changeset a9b2a0a for molecuilder/src/leastsquaremin.cpp
- Timestamp:
- Oct 27, 2009, 4:11:22 PM (16 years ago)
- Children:
- 069034
- Parents:
- 55a71b
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
molecuilder/src/leastsquaremin.cpp
r55a71b ra9b2a0a 16 16 * \return sum of square distances 17 17 */ 18 double LSQ (const gsl_vector * x, void * params)18 double LSQ (const gsl_vector * const x, void * params) 19 19 { 20 20 double sum = 0.; 21 21 struct LSQ_params *par = (struct LSQ_params *)params; 22 Vector **vectors = par->vectors;22 const Vector ** vectors = par->vectors; 23 23 int num = par->num; 24 24
Note:
See TracChangeset
for help on using the changeset viewer.