STK++ 0.9.13
STK_Law_FisherSnedecor.cpp
Go to the documentation of this file.
1/*--------------------------------------------------------------------*/
2/* Copyright (C) 2004-2016 Serge Iovleff, Université Lille 1, Inria
3
4 This program is free software; you can redistribute it and/or modify
5 it under the terms of the GNU Lesser General Public License as
6 published by the Free Software Foundation; either version 2 of the
7 License, or (at your option) any later version.
8
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU Lesser General Public License for more details.
13
14 You should have received a copy of the GNU Lesser General Public
15 License along with this program; if not, write to the
16 Free Software Foundation, Inc.,
17 59 Temple Place,
18 Suite 330,
19 Boston, MA 02111-1307
20 USA
21
22 Contact : S..._Dot_I..._At_stkpp_Dot_org (see copyright for ...)
23*/
24
25/*
26 * Project: stkpp::STatistiK::Law
27 * Purpose: FisherSnedecor probability distribution.
28 * Author: Serge Iovleff, S..._Dot_I..._At_stkpp_Dot_org (see copyright for ...)
29 **/
30
36#ifndef IS_RTKPP_LIB
37#include "../include/STK_Law_FisherSnedecor.h"
38#endif
39
40
41namespace STK
42{
43
44namespace Law
45{
46
47#ifndef IS_RTKPP_LIB
48
49/* @return a pseudo FisherSnedecor random variate. */
51{
52 return 0;
53}
54/* @return the value of the pdf
55 * @param x a positive real value
56 **/
58{
59 return 0;
60}
61/* @return the value of the log-pdf
62 * @param x a positive real value
63 **/
65{
66 return 0;
67}
68/* @return the cumulative distribution function
69 * @param t a positive real value
70 **/
72{
73 return 0;
74}
75/* @return the inverse cumulative distribution function
76 * @param p a probability number
77 **/
79{
80 return 0;
81}
82
83/* @return a pseudo FisherSnedecor random variate with the specified parameters.
84 * @param df1, df2 degree of freedom parameters
85 **/
86Real FisherSnedecor::rand( int df1, int df2)
87{
88 return 0;
89}
90/* @return the value of the pdf
91 * @param x a positive real value
92 * @param df1, df2 degree of freedom parameters
93 **/
94Real FisherSnedecor::pdf(Real const& x, int df1, int df2)
95{
96 return 0;
97}
98/* @return the value of the log-pdf
99 * @param x a positive real value
100 * @param df1, df2 degree of freedom parameters
101 **/
102Real FisherSnedecor::lpdf(Real const& x, int df1, int df2)
103{
104 return 0;
105}
106/* @return the cumulative distribution function
107 * @param t a positive real value
108 * @param df1, df2 degree of freedom parameters
109 **/
110Real FisherSnedecor::cdf(Real const& t, int df1, int df2)
111{
112 return 0;
113}
114
115/* @return the inverse cumulative distribution function
116 * @param p a probability number
117 * @param df1, df2 degree of freedom parameters
118 **/
119Real FisherSnedecor::icdf(Real const& p, int df1, int df2)
120{
121 return 0;
122}
123
124#endif
125
126} // namespace Law
127
128} // namespace STK
129
virtual Real cdf(Real const &t) const
virtual Real pdf(Real const &x) const
virtual Real icdf(Real const &p) const
virtual Real lpdf(Real const &x) const
The MultidimRegression class allows to regress a multidimensional output variable among a multivariat...
double Real
STK fundamental type of Real values.
The namespace STK is the main domain space of the Statistical ToolKit project.