https://github.com/qloha/smoothmath
Math package for python
https://github.com/qloha/smoothmath
Last synced: 5 months ago
JSON representation
Math package for python
- Host: GitHub
- URL: https://github.com/qloha/smoothmath
- Owner: qloha
- License: mit
- Created: 2024-08-15T20:18:21.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-10-12T20:55:48.000Z (over 1 year ago)
- Last Synced: 2025-11-27T20:21:05.734Z (7 months ago)
- Language: Python
- Homepage: https://qloha.github.io/smoothmath
- Size: 81.1 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# SmoothMath
The smoothest math package!
## How to install:
To install this package, run ```pip install smoothmath```
## Example
Some things that this package includes is the add & subtract function. Here's an example of the add:
```
import smoothmath as sm
print(sm.add(4, 2)) #result is 6
```
And to subtract, it's as easy as
```
import smoothmath as sm
print(sm.subtract(4, 2)) #result is 2
```
### For the full documentation, please visit https://qloha.github.io/smoothmath