#characteristics #function #fang #oosterlee #inverting

fang_oost

实现 Fang 和 Oosterlee 算法的特征函数求逆的库

27 个版本 (14 个重大更改)

0.15.1 2021 年 9 月 1 日
0.14.2 2020 年 11 月 23 日
0.14.0 2019 年 3 月 2 日
0.13.7 2018 年 9 月 11 日
0.7.0 2018 年 7 月 16 日

#647 in 数学

每月 33 次下载
用于 5 个 Crates(4 个直接使用)

MIT 许可证

27KB
373

[lin-badge]: https://github.com/danielhstahl/fang_oost_rust/workflows/Rust/badge.svg [cov-badge]: https://codecov.io/gh/danielhstahl/fang_oost_rust/branch/master/graph/badge.svg

Linux Codecov
![lin-badge] ![cov-badge]

Fang-Oosterlee Rust 库

在 Rust 中实现 Fang-Oosterlee 算法。虽然该算法最初用于期权定价,但它可用于各种用例。例如,它可以用于计算分布的 Value at Risk、分布的密度和部分期望。

它需要一个在特定间隔计算的特征函数。提供了一个实用函数,该函数将解析特征函数转换为向量。

文档在 docs.rs

使用

将以下内容放入您的 Cargo.toml

[dependencies]
fang_oost = "0.15"

导入和使用

extern crate num_complex;
extern crate fang_oost;
extern crate rayon;
use rayon::prelude::*;
use num_complex::Complex;

let num_x = 1024;
let num_u = 256;
let x_min = -20.0;
let x_max = 25.0;
let mu=2.0;
let sigma:f64=5.0;
let norm_cf = |u:&Complex<f64>|(u*mu+0.5*u*u*sigma*sigma).exp();
let x_domain=fang_oost::get_x_domain(num_x, x_min, x_max);
//computes discrete gaussian characteristic function
let discrete_cf=fang_oost::get_discrete_cf(num_u, x_min, x_max, &norm_cf);
let result=fang_oost::get_expectation_single_element_real(
    x_min, x_max, x, &discrete_cf,
     |u_im, x, k|{
         if k==0{x-x_min} else { ((x-x_min)*u_im).sin()/u_im }
     }
);

基准测试

https://danielhstahl.github.io/fang_oost_rust/report/index.html 查看基准测试。

依赖关系

~2MB
~35K SLoC