pytutorial/numpy/constants/README.md
David Rotermund 2cdf3666fc
Create README.md
Signed-off-by: David Rotermund <54365609+davrot@users.noreply.github.com>
2023-12-13 16:48:03 +01:00

24 lines
746 B
Markdown
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# Constants
{:.no_toc}
<nav markdown="1" class="toc-class">
* TOC
{:toc}
</nav>
## 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|Eulers constant, base of natural logarithms, Napiers constant. e = 2.71828182845904523536028747135266249775724709369995...|
|**numpy.newaxis** | **A convenient alias for None, useful for indexing arrays** |
|numpy.pi|pi = 3.1415926535897932384626433...|