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/dataManip/psRandom.c

    r4083 r4330  
    1010*  @author GLG, MHPCC
    1111*
    12 *  @version $Revision: 1.8 $ $Name: not supported by cvs2svn $
    13 *  @date $Date: 2005-06-01 23:51:25 $
     12*  @version $Revision: 1.9 $ $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
     
    5757
    5858psRandom *psRandomAlloc(psRandomType type,
    59                         psU64 seed)
     59                        unsigned long seed)
    6060{
    6161    gsl_rng   *r      = NULL;
     
    8686
    8787void psRandomReset(psRandom *rand,
    88                    psU64 seed)
     88                   unsigned long seed)
    8989{
    9090    // Check null psRandom
     
    103103}
    104104
    105 psF64 psRandomUniform(const psRandom *r)
     105double psRandomUniform(const psRandom *r)
    106106{
    107107    // Check null psRandom variable
     
    116116}
    117117
    118 psF64 psRandomGaussian(const psRandom *r)
     118double psRandomGaussian(const psRandom *r)
    119119{
    120120    // Check null psRandom variable
     
    130130}
    131131
    132 psF64 psRandomPoisson(const psRandom *r, psF64 mean)
     132double psRandomPoisson(const psRandom *r, double mean)
    133133{
    134134    // Check null psRandom variable
Note: See TracChangeset for help on using the changeset viewer.