https://github.com/peterpf/gomathlib
Go library with mathematical functions, data structures and other concepts
https://github.com/peterpf/gomathlib
data-structures filters mathematics number-theory
Last synced: 22 days ago
JSON representation
Go library with mathematical functions, data structures and other concepts
- Host: GitHub
- URL: https://github.com/peterpf/gomathlib
- Owner: peterpf
- License: gpl-3.0
- Created: 2017-06-14T06:42:40.000Z (almost 9 years ago)
- Default Branch: main
- Last Pushed: 2022-10-04T08:29:20.000Z (over 3 years ago)
- Last Synced: 2024-06-20T12:43:31.329Z (almost 2 years ago)
- Topics: data-structures, filters, mathematics, number-theory
- Language: Go
- Homepage:
- Size: 26.4 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# Go Math Library
Collection of several mathematical functions and data structures.
Find a list of supported functions below:
## Number Theory
- Totient function
- Möbius function
- Greatest Common Divisor
- Prime Factorization, Prime Factor Exponent
## Stack Data Structure
- First-In-First-Out (FIFO)
## Image Processing
This section lists functions applied on matrices (provided by [gonum.org/v1/gonum/mat](https://pkg.go.dev/gonum.org/v1/gonum/mat)) for image manipulation:
- Average Filter
- Gauss Filter
## Data Scalers
List of scalers for data:
- MinMaxScaler
- StandardScaler
- Limiter (to cap values between min and max)