-
Updated
Jul 1, 2022 - JavaScript
mathematics
Here are 6,121 public repositories matching this topic...
-
Updated
Jun 24, 2022 - C++
-
Updated
Jun 19, 2022 - C
-
Updated
Jul 2, 2022 - Java
-
Updated
Jun 8, 2022
-
Updated
Jun 21, 2022 - C++
-
Updated
May 19, 2022 - Python
-
Updated
Jul 1, 2022 - TypeScript
-
Updated
Jun 23, 2022
-
Updated
Jun 25, 2022 - TeX
-
Updated
Jul 2, 2022 - JavaScript
-
Updated
Jul 3, 2022 - JavaScript
-
Updated
May 29, 2022
-
Updated
Apr 17, 2022 - PHP
-
Updated
May 4, 2022 - JavaScript
-
Updated
Jun 25, 2022 - JavaScript
-
Updated
Jun 19, 2022 - Python
-
Updated
Jun 12, 2022
-
Updated
Mar 23, 2022 - Jupyter Notebook
-
Updated
May 6, 2022 - Java
-
Updated
Apr 7, 2021 - JavaScript
IEEE 754 recommends (but does not require) a compound
function, which is in the process of being standardized for C and C++; we should expose it in swift-numerics. The simplest, most literal translation of the operation into Swift would be:
extension RealFunctions {
/// (1+x)ⁿ
///
/// Returns NaN if x < -1.
static func compound(_ x: Self, _ n: Int) -> Self {
// not
What is the feature or improvement you would like to see?
A function that computes the graph center, and the graph periphery. The graph center is the set of vertices that has minimal eccentricity. The periphery is the set with maximal eccentricity.
Use cases for the feature
This is a standard concept in graph theory.
**Implementatio
-
Updated
Jun 21, 2022 - HTML
-
Updated
Jul 3, 2022 - Python
-
Updated
Jul 3, 2022 - Jupyter Notebook
Improve this page
Add a description, image, and links to the mathematics topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the mathematics topic, visit your repo's landing page and select "manage topics."
Describe the bug
The analytical integral of the RooPoisson is implemented wrongly for the case where the boundaries are
0 < a < 1e30
andb >= 1e30
.Expected behavior
The integral should be correct.
To Reproduce
The wrong integral can be reproduced with this code snippet.