Home | Develop | Download | Contact
Rayleigh.hpp
1/*
2 * Rayleigh.hpp
3 *
4 * Copyright 2018 Fernando Pujaico Rivera <fernando.pujaico.rivera@gmail.com>
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
19 * MA 02110-1301, USA.
20 *
21 */
22
32#ifndef __PDS_RAYLEIGH_HPP__
33#define __PDS_RAYLEIGH_HPP__
34
35#include <Pds/AbstractRV>
36#include <Pds/Congruential>
37
46namespace Pds{
47
48
56class Rayleigh: public AbstractRV
57{
58
59public:
60
65
67 double Sigma;
68
69public:
70
86 Rayleigh(void);
87
98 Rayleigh(double Sigma);
99
101
106public:
107
117 bool Init(double xinit);
118
123public:
124
137 double GetValue(void);
138
147 Pds::Vector GetVector(unsigned int N);
148
160
170 Pds::Matrix GetMatrix(unsigned int Nlin,unsigned int Ncol);
171
187public:
188
198 double GetSigma(void) const;
199
200
206}; // Class Rayleigh
207
208} // namespace Pds
209
214#endif
215
La clase tipo Pds::AbstractRV . Esta es una clase abstracta para toda la familia de random variables....
Definition: AbstractRV.hpp:55
La clase tipo Pds::Congruential . Esta clase genera un objeto con dos parametros Nlin y Ncol....
La clase tipo Pds::Matrix . Esta clase genera una matriz de Nlin lineas y Ncol columnas....
Definition: Matrix.hpp:96
La clase tipo Pds::Rayleigh . Esta clase genera un objeto con dos parametros Nlin y Ncol....
Definition: Rayleigh.hpp:57
double Sigma
Definition: Rayleigh.hpp:67
Pds::Congruential C
Definition: Rayleigh.hpp:64
La clase tipo Pds::Vector . Esta clase genera una matriz de Nlin lineas y 1 columna....
Definition: Vector.hpp:80
Pds::Vector GetVector(unsigned int N)
Pide un vector con muestras de la Random Variable.
bool GetMatrix(Pds::Matrix &X)
Pide una matriz con muestras de la Random Variable.
Pds::Matrix GetMatrix(unsigned int Nlin, unsigned int Ncol)
Pide una matriz con muestras de la Random Variable.
double GetValue(void)
Pide una muestra de la Random Variable.
bool GetVector(Pds::Vector &x)
Pide un vector con muestras de la Random Variable.
Rayleigh(double Sigma)
Crea un objeto de tipo Pds::Rayleigh (una variable discreta rayleighmente distribuida entre [0,...
Rayleigh(void)
Crea un objeto de tipo Pds::Rayleigh (una variable discreta rayleighmente distribuida entre [0,...
double GetSigma(void) const
Retorna el parametro Sigma.
bool Init(double xinit)
Inicializa la variable aleatória.
Nombre de espacio para Pds (Procesamiento Digital de Senales)
Definition: AbstractRV.hpp:42

Enlaces de interés

HomePage Bazaar Download Bug report Ayuda Developer Feed