Changeset 4330 for trunk/psLib/src/dataManip/psRandom.h
- Timestamp:
- Jun 20, 2005, 5:01:37 PM (21 years ago)
- File:
-
- 1 edited
-
trunk/psLib/src/dataManip/psRandom.h (modified) (6 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/src/dataManip/psRandom.h
r4293 r4330 10 10 * @author GLG, MHPCC 11 11 * 12 * @version $Revision: 1. 5$ $Name: not supported by cvs2svn $13 * @date $Date: 2005-06- 17 00:11:05$12 * @version $Revision: 1.6 $ $Name: not supported by cvs2svn $ 13 * @date $Date: 2005-06-21 03:01:37 $ 14 14 * 15 15 * Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii … … 54 54 psRandom *psRandomAlloc( 55 55 psRandomType type, ///< The type of RNG 56 psU64 seed///< Known value with which to seed the RNG56 unsigned long seed ///< Known value with which to seed the RNG 57 57 ); 58 58 … … 63 63 void psRandomReset( 64 64 psRandom *rand, ///< Existing psRandom struct to reset 65 psU64 seed///< Known value with which to seed the RNG65 unsigned long seed ///< Known value with which to seed the RNG 66 66 ); 67 67 … … 69 69 * Uses gsl_rng_uniform. 70 70 * 71 * @return psF64: Random number.71 * @return double: Random number. 72 72 */ 73 psF64psRandomUniform(73 double psRandomUniform( 74 74 const psRandom *r ///< psRandom struct for RNG 75 75 ); … … 78 78 * Uses gsl_ran_gaussian. 79 79 * 80 * @return psF64: Random number.80 * @return double: Random number. 81 81 */ 82 psF64psRandomGaussian(82 double psRandomGaussian( 83 83 const psRandom *r ///< psRandom struct for RNG 84 84 ); … … 87 87 * Uses gsl_ran_poisson. 88 88 * 89 * @return psF64: Random number.89 * @return double: Random number. 90 90 */ 91 psF64psRandomPoisson(91 double psRandomPoisson( 92 92 const psRandom *r, ///< psRandom struct for RNG 93 psF64mean ///< Mean value93 double mean ///< Mean value 94 94 ); 95 95
Note:
See TracChangeset
for help on using the changeset viewer.
