Git Product home page Git Product logo

python-numerical-math's Introduction

Numerical math

Topics

  • Babylonian method babylon.py
  • Bisection method bisection.py
  • Regula falsi method regulafalsi.py
  • Newton method newton.py
  • Jacobi method jacobi.py
  • Gauss Seidel method gaussseidel.py
  • Lagrange polynomial lagrange.py
  • Least squares method leastsquares.py
  • Numerical integration - Rectangular method rectangle.py
  • Numerical integration - Trapezoidal method trapezoid.py

How to

Running

First insert the numa package to your PYTHONPATH. This is example on how to run the babylon.py script.

cd numa/topics && python babylon.py

Functions

Python Sympy expression
math.log(x) log(x)
math.log10(x) log10(x)
math.exp(x) exp(x)
math.sin(x) sin(x)
math.cos(x) cos(x)

Matrices and Vectors

# input matrices as lists
[[11,2,1],[1,10,2],[2,3,-8]]

# it will generate this Matrix instance
Matrix((
    [11,2,1],
    [1,10,2],
    [2,3,-8]
))

# input vectors as lists
[15, 16, 1]

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.