Changeset 2431
- Timestamp:
- Nov 24, 2004, 10:34:13 AM (22 years ago)
- Location:
- trunk/psLib/src
- Files:
-
- 6 edited
-
dataManip/psFunctions.c (modified) (2 diffs)
-
dataManip/psFunctions.h (modified) (2 diffs)
-
math/psPolynomial.c (modified) (2 diffs)
-
math/psPolynomial.h (modified) (2 diffs)
-
math/psSpline.c (modified) (2 diffs)
-
math/psSpline.h (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/src/dataManip/psFunctions.c
r2411 r2431 7 7 * polynomials. It also contains a Gaussian functions. 8 8 * 9 * @version $Revision: 1.6 7$ $Name: not supported by cvs2svn $10 * @date $Date: 2004-11-24 00:05:54$9 * @version $Revision: 1.68 $ $Name: not supported by cvs2svn $ 10 * @date $Date: 2004-11-24 20:34:13 $ 11 11 * 12 12 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 961 961 962 962 /***************************************************************************** 963 p sGaussianDev()964 This routine creates a psVector of the specified size and type F32965 and fills it with a random Gaussian distribution of numbers with966 the specified mean and sigma. This routine makes use of the GSL967 routines for generating both uniformly distributed numbers and the963 p_psGaussianDev() 964 This private routine (formerly a psLib API routine) creates a psVector of the 965 specified size and type F32 and fills it with a random Gaussian distribution 966 of numbers with the specified mean and sigma. This routine makes use of the 967 GSL routines for generating both uniformly distributed numbers and the 968 968 Gaussian distribution as well. 969 969 970 970 XXX: There is no way to seed the random generator. 971 971 *****************************************************************************/ 972 psVector* p sGaussianDev(float mean, float sigma, psS32 Npts)972 psVector* p_psGaussianDev(float mean, float sigma, psS32 Npts) 973 973 { 974 974 PS_INT_CHECK_NON_NEGATIVE(Npts, NULL); -
trunk/psLib/src/dataManip/psFunctions.h
r2273 r2431 12 12 * @author George Gusciora, MHPCC 13 13 * 14 * @version $Revision: 1.3 3$ $Name: not supported by cvs2svn $15 * @date $Date: 2004-11- 04 01:04:59$14 * @version $Revision: 1.34 $ $Name: not supported by cvs2svn $ 15 * @date $Date: 2004-11-24 20:34:13 $ 16 16 * 17 17 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 54 54 * 55 55 */ 56 psVector* p sGaussianDev(56 psVector* p_psGaussianDev( 57 57 float mean, ///< The mean of the Gaussian 58 58 float sigma, ///< The sigma of the Gaussian -
trunk/psLib/src/math/psPolynomial.c
r2411 r2431 7 7 * polynomials. It also contains a Gaussian functions. 8 8 * 9 * @version $Revision: 1.6 7$ $Name: not supported by cvs2svn $10 * @date $Date: 2004-11-24 00:05:54$9 * @version $Revision: 1.68 $ $Name: not supported by cvs2svn $ 10 * @date $Date: 2004-11-24 20:34:13 $ 11 11 * 12 12 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 961 961 962 962 /***************************************************************************** 963 p sGaussianDev()964 This routine creates a psVector of the specified size and type F32965 and fills it with a random Gaussian distribution of numbers with966 the specified mean and sigma. This routine makes use of the GSL967 routines for generating both uniformly distributed numbers and the963 p_psGaussianDev() 964 This private routine (formerly a psLib API routine) creates a psVector of the 965 specified size and type F32 and fills it with a random Gaussian distribution 966 of numbers with the specified mean and sigma. This routine makes use of the 967 GSL routines for generating both uniformly distributed numbers and the 968 968 Gaussian distribution as well. 969 969 970 970 XXX: There is no way to seed the random generator. 971 971 *****************************************************************************/ 972 psVector* p sGaussianDev(float mean, float sigma, psS32 Npts)972 psVector* p_psGaussianDev(float mean, float sigma, psS32 Npts) 973 973 { 974 974 PS_INT_CHECK_NON_NEGATIVE(Npts, NULL); -
trunk/psLib/src/math/psPolynomial.h
r2273 r2431 12 12 * @author George Gusciora, MHPCC 13 13 * 14 * @version $Revision: 1.3 3$ $Name: not supported by cvs2svn $15 * @date $Date: 2004-11- 04 01:04:59$14 * @version $Revision: 1.34 $ $Name: not supported by cvs2svn $ 15 * @date $Date: 2004-11-24 20:34:13 $ 16 16 * 17 17 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 54 54 * 55 55 */ 56 psVector* p sGaussianDev(56 psVector* p_psGaussianDev( 57 57 float mean, ///< The mean of the Gaussian 58 58 float sigma, ///< The sigma of the Gaussian -
trunk/psLib/src/math/psSpline.c
r2411 r2431 7 7 * polynomials. It also contains a Gaussian functions. 8 8 * 9 * @version $Revision: 1.6 7$ $Name: not supported by cvs2svn $10 * @date $Date: 2004-11-24 00:05:54$9 * @version $Revision: 1.68 $ $Name: not supported by cvs2svn $ 10 * @date $Date: 2004-11-24 20:34:13 $ 11 11 * 12 12 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 961 961 962 962 /***************************************************************************** 963 p sGaussianDev()964 This routine creates a psVector of the specified size and type F32965 and fills it with a random Gaussian distribution of numbers with966 the specified mean and sigma. This routine makes use of the GSL967 routines for generating both uniformly distributed numbers and the963 p_psGaussianDev() 964 This private routine (formerly a psLib API routine) creates a psVector of the 965 specified size and type F32 and fills it with a random Gaussian distribution 966 of numbers with the specified mean and sigma. This routine makes use of the 967 GSL routines for generating both uniformly distributed numbers and the 968 968 Gaussian distribution as well. 969 969 970 970 XXX: There is no way to seed the random generator. 971 971 *****************************************************************************/ 972 psVector* p sGaussianDev(float mean, float sigma, psS32 Npts)972 psVector* p_psGaussianDev(float mean, float sigma, psS32 Npts) 973 973 { 974 974 PS_INT_CHECK_NON_NEGATIVE(Npts, NULL); -
trunk/psLib/src/math/psSpline.h
r2273 r2431 12 12 * @author George Gusciora, MHPCC 13 13 * 14 * @version $Revision: 1.3 3$ $Name: not supported by cvs2svn $15 * @date $Date: 2004-11- 04 01:04:59$14 * @version $Revision: 1.34 $ $Name: not supported by cvs2svn $ 15 * @date $Date: 2004-11-24 20:34:13 $ 16 16 * 17 17 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 54 54 * 55 55 */ 56 psVector* p sGaussianDev(56 psVector* p_psGaussianDev( 57 57 float mean, ///< The mean of the Gaussian 58 58 float sigma, ///< The sigma of the Gaussian
Note:
See TracChangeset
for help on using the changeset viewer.
