QuantLib
: a free/open-source library for quantitative finance
fully annotated source code - version 1.34
Loading...
Searching...
No Matches
ql
math
copulas
plackettcopula.hpp
Go to the documentation of this file.
1
/* -*- mode: c++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2
3
/*
4
Copyright (C) 2010 Hachemi Benyahia
5
Copyright (C) 2010 DeriveXperts SAS
6
7
This file is part of QuantLib, a free-software/open-source library
8
for financial quantitative analysts and developers - http://quantlib.org/
9
10
QuantLib is free software: you can redistribute it and/or modify it
11
under the terms of the QuantLib license. You should have received a
12
copy of the license along with this program; if not, please email
13
<quantlib-dev@lists.sf.net>. The license is also available online at
14
<http://quantlib.org/license.shtml>.
15
16
This program is distributed in the hope that it will be useful, but WITHOUT
17
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
18
FOR A PARTICULAR PURPOSE. See the license for more details.
19
*/
20
21
/*! \file plackettcopula.hpp
22
\brief Plackett copula
23
*/
24
25
#ifndef quantlib_math_plackett_copula_hpp
26
#define quantlib_math_plackett_copula_hpp
27
28
#include <
ql/types.hpp
>
29
#include <functional>
30
31
namespace
QuantLib
{
32
33
//! Plackett copula
34
class
PlackettCopula
{
35
public
:
36
PlackettCopula
(
Real
theta
);
37
Real
operator()
(
Real
x,
Real
y
)
const
;
38
private
:
39
Real
theta_
;
40
};
41
42
}
43
44
#endif
y
Real y
Definition:
andreasenhugevolatilityinterpl.cpp:46
QuantLib::PlackettCopula
Plackett copula.
Definition:
plackettcopula.hpp:34
QuantLib::PlackettCopula::operator()
Real operator()(Real x, Real y) const
Definition:
plackettcopula.cpp:34
QuantLib::PlackettCopula::theta_
Real theta_
Definition:
plackettcopula.hpp:39
QuantLib::Real
QL_REAL Real
real number
Definition:
types.hpp:50
theta
Real theta
Definition:
hestonrndcalculator.cpp:36
QuantLib
Definition:
any.hpp:35
types.hpp
Custom types.
Generated by
Doxygen
1.9.5