Partilhar via


poisson_distribution::mean

Retorna o parâmetro médio de distribuição.

RealType mean() const;

Comentários

a função de membro retorna o valor armazenado stored_mean.

Exemplo

 

// std_tr1__random__poisson_distribution_mean.cpp 
// compile with: /EHsc 
#include <random> 
#include <iostream> 
 
typedef std::mt19937 Myeng; 
typedef std::poisson_distribution<int, double> Mydist; 
int main() 
    { 
    Myeng eng; 
    Mydist dist(3.5); 
    Mydist::input_type engval = eng(); 
    Mydist::result_type distval = dist(eng); 
 
    distval = distval;  // to quiet "unused" warnings 
    engval = engval; 
 
    std::cout << "mean == " << dist.mean() << 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); 
    } 
 
  

Requisitos

Cabeçalho: <random>

namespace: STD

Consulte também

Referência

<random>

poisson_distribution Class