21 #ifndef FTQUANT_LOCALVOLATILITY_HPP
22 #define FTQUANT_LOCALVOLATILITY_HPP
32 std::function<double(
double,
double)> sigma;
38 : r(r), sigma(sigma) {}
41 std::vector<double>& T, std::vector<double>& y,
43 std::vector<std::vector<double>>
generate_paths(
int n_paths,
double spot,
Implements the Dupire's local volatility model.
int calibrate_dupire(std::vector< std::vector< double >> &w, std::vector< double > &T, std::vector< double > &y, double spot)
LocalVolatility(double r, std::function< double(double, double)> &sigma)
std::vector< std::vector< double > > generate_paths(int n_paths, double spot, int steps, double T)