Changeset 6348 for trunk/psLib/src/math
- Timestamp:
- Feb 7, 2006, 1:39:24 PM (20 years ago)
- Location:
- trunk/psLib/src/math
- Files:
-
- 3 edited
-
psPolynomial.c (modified) (2 diffs)
-
psPolynomial.h (modified) (2 diffs)
-
psStats.h (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/src/math/psPolynomial.c
r6305 r6348 7 7 * polynomials. It also contains a Gaussian functions. 8 8 * 9 * @version $Revision: 1.14 1$ $Name: not supported by cvs2svn $10 * @date $Date: 2006-02-0 2 21:09:07$9 * @version $Revision: 1.142 $ $Name: not supported by cvs2svn $ 10 * @date $Date: 2006-02-07 23:36:15 $ 11 11 * 12 12 * Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii … … 623 623 newPoly->type = type; 624 624 newPoly->nX = nOrder; 625 newPoly->p_min = NAN;626 newPoly->p_max = NAN;627 625 newPoly->coeff = psAlloc((nOrder + 1) * sizeof(psF64)); 628 626 newPoly->coeffErr = psAlloc((nOrder + 1) * sizeof(psF64)); -
trunk/psLib/src/math/psPolynomial.h
r6204 r6348 11 11 * @author GLG, MHPCC 12 12 * 13 * @version $Revision: 1.6 1$ $Name: not supported by cvs2svn $14 * @date $Date: 2006-0 1-26 21:10:22$13 * @version $Revision: 1.62 $ $Name: not supported by cvs2svn $ 14 * @date $Date: 2006-02-07 23:36:15 $ 15 15 * 16 16 * Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii … … 73 73 { 74 74 psPolynomialType type; ///< Polynomial type 75 unsigned int nX; ///< Polynomial order 76 psF64 p_min; 77 psF64 p_max; 75 unsigned int nX; ///< Polynomial order 78 76 psF64 *coeff; ///< Coefficients 79 77 psF64 *coeffErr; ///< Error in coefficients -
trunk/psLib/src/math/psStats.h
r6305 r6348 14 14 * @author GLG, MHPCC 15 15 * 16 * @version $Revision: 1.5 0$ $Name: not supported by cvs2svn $17 * @date $Date: 2006-02-0 2 21:09:08$16 * @version $Revision: 1.51 $ $Name: not supported by cvs2svn $ 17 * @date $Date: 2006-02-07 23:39:24 $ 18 18 * 19 19 * Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii … … 51 51 PS_STAT_MIN = 0x001000, ///< Minumum 52 52 PS_STAT_USE_RANGE = 0x002000, ///< Range 53 PS_STAT_USE_BINSIZE = 0x004000 ,///< Binsize53 PS_STAT_USE_BINSIZE = 0x004000 ///< Binsize 54 54 } psStatsOptions; 55 55 … … 62 62 double sampleMedian; ///< formal median of sample 63 63 double sampleStdev; ///< standard deviation of sample 64 double sampleUQ; ///< upper quartile of sample 64 65 double sampleLQ; ///< lower quartile of sample 65 double sampleUQ; ///< upper quartile of sample66 66 double robustMedian; ///< robust median of array 67 67 double robustStdev; ///< robust standard deviation of array
Note:
See TracChangeset
for help on using the changeset viewer.
