Home | Develop | Download | Contact
Uniform.hpp
1/*
2 * Uniform.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_UNIFORM_HPP__
33#define __PDS_UNIFORM_HPP__
34
35#include <Pds/AbstractRV>
36#include <Pds/Congruential>
37
46namespace Pds{
47
48
56class Uniform: public AbstractRV
57{
58
59public:
60
65
67 double A;
68
70 double B;
71
72public:
73
89 Uniform(void);
90
102 Uniform(double A, double B);
103
105
110public:
111
121 bool Init(double xinit);
122
127public:
128
137 double GetValue(void);
138
143 Pds::Vector GetVector(unsigned int N);
144
152
158 Pds::Matrix GetMatrix(unsigned int Nlin,unsigned int Ncol);
159
171public:
172
182 double GetA(void) const;
183
188 double GetB(void) const;
189
195}; // Class Uniform
196
197} // namespace Pds
198
203#endif
204
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::Uniform . Esta clase genera un objeto con dos parametros Nlin y Ncol....
Definition: Uniform.hpp:57
double A
Definition: Uniform.hpp:67
double B
Definition: Uniform.hpp:70
Pds::Congruential C
Definition: Uniform.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.
Uniform(double A, double B)
Crea un objeto de tipo Pds::Uniform (una variable discreta uniformemente distribuida entre [A,...
bool Init(double xinit)
Inicializa la variable aleatória.
double GetB(void) const
Retorna el parametro B.
Uniform(void)
Crea un objeto de tipo Pds::Uniform (una variable discreta uniformemente distribuida entre [0,...
double GetValue(void)
Pide una muestra de la Random Variable.
Pds::Matrix GetMatrix(unsigned int Nlin, unsigned int Ncol)
Pide una matriz con muestras de la Random Variable.
bool GetMatrix(Pds::Matrix &X)
Pide una matriz con muestras de la Random Variable.
double GetA(void) const
Retorna el parametro A.
bool GetVector(Pds::Vector &x)
Pide un vector con muestras de la Random Variable.
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