Changes between Version 2 and Version 3 of PDAF_set_seed


Ignore:
Timestamp:
Mar 14, 2026, 2:09:28 PM (11 hours ago)
Author:
lnerger
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • PDAF_set_seed

    v2 v3  
    1 = PDAF_set_seed =
     1= PDAF_set_seedvec =
    22
    3 This page documents the routine `PDAF_set_seed` of PDAF, which was introduced with PDAF V3.1.
     3This page documents the routine `PDAF_set_seedvec` of PDAF, which was introduced with PDAF V3.1.
    44
    55This routine can be used to explicitly set a seed vector which controls the random vector generation. (See also [wiki:PDAF_set_seedset], which allows to choose a predefined seed vector from 20 different choices)
     
    77The interface is:
    88{{{
    9   SUBROUTINE PDAF_set_seed(seedvec)
     9  SUBROUTINE PDAF_set_seedvec(seedvec)
    1010
    1111    INTEGER, INTENT(in) :: seedvec(4)   ! Seed vector (the last element needs to be odd)
     
    1414**Note:**
    1515* One needs to ensure that the last element of `seedvec` is an odd value (The routine does not check this)
    16 * Compared to the routine `PDAF_set_ssedset`, this routine allows for a finer control of random numbers
    17 * The routine can be used in combination with [wiki:PDAF_get_seed].
     16* Compared to the routine `PDAF_set_seedset`, this routine allows for a finer control of random numbers
     17* The routine can be used in combination with [wiki:PDAF_get_seedvec].