Skip to main content

Tools for numerical math calculations

Project description

Tools for numerical math calculations

Build Status Codacy Badge Codacy Badge

This repository contains tools for math numerical computation such as numerical integration and interpolation. The current implementation contains:

  • numerical integration using Gauss formula
import numpy as np
from numerical.integration import gauss
from numerical.area import bound
from numerical.area import grid

def f(x):
    return np.power(x[0], 2)

bd = bound.LineBoundary1D(0, 1)
gd = grid.UniformGrid(bd, step=[0.02])
gauss.integrate(f, gd)

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

scikit-numerical-0.0.7.tar.gz (5.4 kB view hashes)

Uploaded Source

Built Distribution

scikit_numerical-0.0.7-py3-none-any.whl (9.1 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page