Changeset 1022 for trunk/psLib/src/math/psPolynomial.c
- Timestamp:
- Jun 14, 2004, 9:40:15 AM (22 years ago)
- File:
-
- 1 edited
-
trunk/psLib/src/math/psPolynomial.c (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/src/math/psPolynomial.c
r1020 r1022 7 7 * polynomials. It also contains a Gaussian functions. 8 8 * 9 * @version $Revision: 1.1 2$ $Name: not supported by cvs2svn $10 * @date $Date: 2004-06-14 19: 32:42$9 * @version $Revision: 1.13 $ $Name: not supported by cvs2svn $ 10 * @date $Date: 2004-06-14 19:40:14 $ 11 11 * 12 12 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 73 73 Gaussian distribution as well. 74 74 75 GUS: There is no way to seed the random generator.75 NOTE: There is no way to seed the random generator. 76 76 *****************************************************************************/ 77 77 psVector *psGaussianDev(float mean, … … 94 94 } 95 95 96 // GUS: Should I free r as well?96 // NOTE: Should I free r as well? 97 97 return(gauss); 98 98 } … … 320 320 float xSum = 1.0; 321 321 322 // GUS: Do we want to flag this case?322 // NOTE: Do we want to flag this case? 323 323 if (myPoly->n == 0) { 324 324 return(1.0); … … 646 646 double xSum = 1.0; 647 647 648 // GUS: Do we want to flag this case?648 // NOTE: Do we want to flag this case? 649 649 if (myPoly->n == 0) { 650 650 return(1.0);
Note:
See TracChangeset
for help on using the changeset viewer.
