Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
cantaro86
GitHub Repository: cantaro86/Financial-Models-Numerical-Methods
Path: blob/master/src/C/PDE_solver.h
1700 views
1
#ifndef PDE_SOLVER_H
2
#define PDE_SOLVER_H
3
4
5
#include <stdio.h>
6
#include <string.h>
7
#include <stdlib.h>
8
#include "SOR.h"
9
#include <math.h>
10
11
double PDE_SOR(int Ns, int Nt, double S, double K, double T, double sig, double r, double w);
12
13
14
#endif
15
16