-
Updated
Jan 26, 2022 - Go
numerical-methods
Here are 1,445 public repositories matching this topic...
-
Updated
Feb 28, 2022 - HTML
-
Updated
Mar 6, 2022 - C++
-
Updated
Feb 21, 2022 - Python
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
Mar 6, 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
Is your feature request related to a problem? Please describe.
Part of the documentation is written in ipynb files. This creates very large diffs and files that are checked into the repository.
Give an example use case.
The developer tutorial Creating an Example Notebook does not execute any co
-
Updated
Mar 4, 2022 - HTML
-
Updated
Jan 26, 2022 - Jupyter Notebook
-
Updated
Feb 20, 2019 - Python
-
Updated
Feb 18, 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
Mar 4, 2022 - Julia
-
Updated
Nov 11, 2020 - 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
-
Updated
Aug 21, 2020 - Haskell
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.