Numerical Methods

Numerical methods are techniques to approximate mathematical processes (examples of mathematical processes are integrals, differential equations, nonlinear equations).

Advanced Source Code

PFA – Power Flow Analysis of Power System in C++ Visual Sudio

Research work Nº1 – POWER I “EE-353” Introduction This is an undergraduate research work, assigned to me when I took…

Read More »
Math and others

A C++ class for addition, difference, multiplication and inversion of matrices (CMatrix)

This example shows how to use the powerful CMatriz class to work with matrices. And show how this class can…

Read More »
Math and others

Numerical Methods for Finding Roots of a Function in C++

Is solved using the following numerical method algorithms, coded in C++ language: Bisection False position Secant method Newton-Raphson Fixed point…

Read More »
Math and others

Numerical Methods for Solving Ordinary Equations – ODEs in C++

An ordinary differential equation – ODE, is solved using the following numerical method algorithms, coded in C++ language: Euler Modified…

Read More »
Math and others

Numerical Integration in C++

Is solved using the following numerical method algorithms, coded in C++ language: Trapezoidal Rule Simpson’s Rule Developed by: JOSE LUIS…

Read More »
Math and others

Matrix Numerical Methods for Solving Systems of Linear Equations in C++

A system of equations is solved using the following algorithms in numerical methods, coded in C++ language: Gauss method –…

Read More »
Math and others

Calculates all real and complex roots of a polynomial of degree n in C++ (NROOTS)

Calculates all real and complex roots of a polynomial of degree n The algorithm is simple: just find any root…

Read More »
Back to top button