-
Updated
Mar 13, 2022 - Go
numerical-methods
Here are 1,501 public repositories matching this topic...
-
Updated
Apr 26, 2022 - HTML
-
Updated
Apr 28, 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
Apr 11, 2022 - Python
-
Updated
Apr 28, 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
-
Updated
Dec 28, 2021 - Python
-
Updated
Jun 26, 2021
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
Apr 27, 2022 - HTML
-
Updated
Jan 26, 2022 - Jupyter Notebook
-
Updated
Apr 26, 2022 - C
-
Updated
Feb 20, 2019 - Python
-
Updated
Apr 25, 2022 - Smalltalk
-
Updated
Dec 11, 2019 - Go
-
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
Apr 19, 2022 - Julia
-
Updated
Apr 28, 2022 - Fortran
-
Updated
Oct 2, 2021 - TeX
-
Updated
May 6, 2019
-
Updated
Sep 6, 2021 - Python
-
Updated
May 11, 2021 - Jupyter Notebook
-
Updated
Jun 27, 2018 - Python
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.