Condividi tramite


geometric_distribution::p

Restituisce il parametro di distribuzione p.

RealType p() const;

Note

La funzione membro restituisce il valore archiviato stored_p.

Esempio

 

// std_tr1__random__geometric_distribution_p.cpp 
// compile with: /EHsc 
#include <random> 
#include <iostream> 
 
typedef std::mt19937 Myeng; 
typedef std::geometric_distribution<int, double> Mydist; 
int main() 
    { 
    Myeng eng; 
    Mydist dist(0.1); 
    Mydist::input_type engval = eng(); 
    Mydist::result_type distval = dist(eng); 
 
    distval = distval;  // to quiet "unused" warnings 
    engval = engval; 
 
    std::cout << "p == " << dist.p() << std::endl; 
 
    dist.reset(); // discard any cached values 
    std::cout << "a random value == " << dist(eng) << std::endl; 
    std::cout << "a random value == " << dist(eng) << std::endl; 
    std::cout << "a random value == " << dist(eng) << std::endl; 
 
    return (0); 
    } 
 
  

Requisiti

intestazione: <random>

Spazio dei nomi: deviazione standard

Vedere anche

Riferimenti

<random>

geometric_distribution Class