From 2cdf3666fc5f7ea01f4d1d16b2916fb7fb660bc8 Mon Sep 17 00:00:00 2001 From: David Rotermund <54365609+davrot@users.noreply.github.com> Date: Wed, 13 Dec 2023 16:48:03 +0100 Subject: [PATCH] Create README.md Signed-off-by: David Rotermund <54365609+davrot@users.noreply.github.com> --- numpy/constants/README.md | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 numpy/constants/README.md diff --git a/numpy/constants/README.md b/numpy/constants/README.md new file mode 100644 index 0000000..e92ee21 --- /dev/null +++ b/numpy/constants/README.md @@ -0,0 +1,24 @@ +# Constants +{:.no_toc} + + + +## The goal + +Numpy provides plenty of constants. + +Questions to [David Rotermund](mailto:davrot@uni-bremen.de) + +## [The most important ones](https://numpy.org/doc/stable/reference/constants.html) + +||| +|---|---| +|numpy.inf​|IEEE 754 floating point representation of (positive) infinity.​| +|numpy.nan​|IEEE 754 floating point representation of Not a Number (NaN).​| +|numpy.e​|Euler’s constant, base of natural logarithms, Napier’s constant.​ e = 2.71828182845904523536028747135266249775724709369995...​| +|**numpy.newaxis**​ | **A convenient alias for None, useful for indexing arrays**​ | +|numpy.pi​|pi = 3.1415926535897932384626433...​| +