-
Updated
Jul 8, 2022 - Go
numerical-methods
Here are 1,565 public repositories matching this topic...
-
Updated
Jun 28, 2022 - HTML
-
Updated
Jul 13, 2022 - C++
Description
A function to pad a string with zeros or another symbol to a given width could be helpful in many cases, especially together with the to_string() function for integer to string conversion.
Currently available methods to achieve this are using concatenation
width = 32
str = "hello"
padded_str = repeat('0',width-len(str)')//str
and perhaps also internal file I/O
-
Updated
May 22, 2022 - Python
-
Updated
Jul 13, 2022 - HTML
A point load can be mathematically represented as a distribution, e.g., a Dirac delta. It breaks the Gridap flow, since one cannot use Gauss quadratures and numerical integration (what we usually do in FEM) to compute the integral of f*v in that case.
I don't want to consider hacks, e.g., touch the vector entry in a particular node in which you want to put the force (assuming the force is on
-
Updated
Jan 22, 2022 - C++
-
Updated
Nov 1, 2021 - C++
-
Updated
Mar 23, 2019 - Jupyter Notebook
Describe the bug
The function probnum.diffeq.odefilter.utils.ivp_to_regression_problem is not displayed in the docs. (The entire odefilter.utils bit does not exist). But it should.
I am talking about this function:
https://github.com/probabilistic-numerics/probnum/blob/main/src/probnum/diffeq/odefilter/utils/_problem_utils.py
And I would like the odefilter.utils appear next to
-
Updated
May 11, 2022 - Python
-
Updated
Jun 26, 2021
-
Updated
Jun 24, 2022 - C
-
Updated
Apr 27, 2022 - HTML
-
Updated
Jan 26, 2022 - Jupyter Notebook
-
Updated
Feb 20, 2019 - Python
-
Updated
Jul 12, 2022 - Smalltalk
-
Updated
May 20, 2022 - Go
-
Updated
Jul 10, 2022 - Julia
-
Updated
Oct 9, 2020 - Jupyter Notebook
Some unit tests asserting e.g. the length or some other property of the datasets would be nice to have.
-
Updated
Jul 12, 2022 - Python
-
Updated
May 9, 2022 - TeX
-
Updated
Apr 28, 2022 - Fortran
-
Updated
May 6, 2019
-
Updated
Sep 6, 2021 - Python
-
Updated
May 11, 2021 - Jupyter Notebook
Improve this page
Add a description, image, and links to the numerical-methods topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the numerical-methods topic, visit your repo's landing page and select "manage topics."
Heston model has accurate density approximations for European option prices, which are of interest.
The module implementing this method should live under tf_quant_finance/volatility/heston_approximation.py. It should support both European option puts and calls approximations. Tests should be in heston_approximation_test.py in the same folder.