Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/angelobattaglia/matlab_routines

An implementation of numerical methods in matlab
https://github.com/angelobattaglia/matlab_routines

matlab numerical-methods

Last synced: 4 days ago
JSON representation

An implementation of numerical methods in matlab

Awesome Lists containing this project

README

        

# MATLAB Routines

These are some numerical routines for MATLAB®, it contains hints on how to plot, how to use certain numerical methods with examples tied with commentary. Plot functions in 3D, approximate solutions of nonlinear equations, learn how to build matrices, use them for linear systems and evaluate integrals.

## Direct Methods for Linear Systems

- QR Factorization
- LU Factorization
- SVD Factorization

## Iterative Methods for Linear Systems

- Gauss-Seidel Method
- Jacobi Method
- Gradient Descent
- Conjugate Gradient Descent

## Interpolation

## Non-Linear Equations

- Bisection Method
- Secant Method
- Newton's Method (aka Newton-Rhapson or Tangent Method)
- Fixed Point Method

## Integrals
- Newton-Coates
- Trapezoid

## Ordinary Differential Equations

- Implicit Euler Method
- Explicit Euler Method
- Runge Kutta Method
- Heun Method