Changeset 9614 for trunk/psModules/src/detrend/pmFlatNormalize.c
- Timestamp:
- Oct 17, 2006, 10:49:10 AM (20 years ago)
- File:
-
- 1 edited
-
trunk/psModules/src/detrend/pmFlatNormalize.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psModules/src/detrend/pmFlatNormalize.c
r8815 r9614 13 13 // few with absolutely no trouble (it *is* over-constrained). For this reason, I'm putting the maximum number 14 14 // of iterations and tolerance as preset values. 15 #define MAXITER 10 16 #define TOLERANCE 1e-3 15 #define MAXITER 10 // Maximum number of iterations 16 #define TOLERANCE 1e-3 // Minimum tolerance for convergance 17 17 18 // Estimate the flat-field normalisation; return the source flux in each integration 19 bool pmFlatNormalize(psVector **expFluxesPtr, // Flux in each exposure; modified for return 20 psVector **chipGainsPtr, // Initial guess of the chip gains; modified for return 21 const psImage *bgMatrix 22 ) 18 19 bool pmFlatNormalize(psVector **expFluxesPtr, psVector **chipGainsPtr, const psImage *bgMatrix) 23 20 { 24 21 PS_ASSERT_PTR_NON_NULL(bgMatrix, false);
Note:
See TracChangeset
for help on using the changeset viewer.
