An open API service indexing awesome lists of open source software.

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

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)