IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Jun 20, 2005, 5:01:37 PM (21 years ago)
Author:
drobbin
Message:

* empty log message *

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/src/math/psRandom.h

    r4293 r4330  
    1010*  @author GLG, MHPCC
    1111*
    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 $
    1414*
    1515*  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    5454psRandom *psRandomAlloc(
    5555    psRandomType type,                 ///< The type of RNG
    56     psU64 seed                         ///< Known value with which to seed the RNG
     56    unsigned long seed                 ///< Known value with which to seed the RNG
    5757);
    5858
     
    6363void psRandomReset(
    6464    psRandom *rand,                    ///< Existing psRandom struct to reset
    65     psU64 seed                         ///< Known value with which to seed the RNG
     65    unsigned long seed                 ///< Known value with which to seed the RNG
    6666);
    6767
     
    6969 *  Uses gsl_rng_uniform.
    7070 * 
    71  *  @return psF64:     Random number.
     71 *  @return double:     Random number.
    7272 */
    73 psF64 psRandomUniform(
     73double psRandomUniform(
    7474    const psRandom *r                  ///< psRandom struct for RNG
    7575);
     
    7878 *  Uses gsl_ran_gaussian.
    7979 * 
    80  *  @return psF64:     Random number.
     80 *  @return double:     Random number.
    8181 */
    82 psF64 psRandomGaussian(
     82double psRandomGaussian(
    8383    const psRandom *r                  ///< psRandom struct for RNG
    8484);
     
    8787 *  Uses gsl_ran_poisson.
    8888 * 
    89  *  @return psF64:     Random number.
     89 *  @return double:     Random number.
    9090 */
    91 psF64 psRandomPoisson(
     91double psRandomPoisson(
    9292    const psRandom *r,                 ///< psRandom struct for RNG
    93     psF64 mean                         ///< Mean value
     93    double mean                         ///< Mean value
    9494);
    9595
Note: See TracChangeset for help on using the changeset viewer.