Algorithms_in_C 1.0.0
Set of algorithms implemented in C.
|
Files | |
bisection_method.c | |
In mathematics, the Bisection Method is a root-finding method that applies to any continuous function for which one knows two values with opposite signs. | |
durand_kerner_roots.c | |
Compute all possible approximate roots of any given polynomial using Durand Kerner algorithm | |
lu_decompose.c | |
LU decomposition of a square matrix | |
newton_raphson_root.c | |
Find approximate solution for \(f(x) = 0\) using Newton-Raphson interpolation algorithm. | |
ode_forward_euler.c | |
Solve a multivariable first order ordinary differential equation (ODEs) using forward Euler method | |
ode_midpoint_euler.c | |
Solve a multivariable first order ordinary differential equation (ODEs) using midpoint Euler method | |
ode_semi_implicit_euler.c | |
Solve a multivariable first order ordinary differential equation (ODEs) using semi implicit Euler method | |
qr_decompose.h | |
Library functions to compute QR decomposition of a given matrix. | |
qr_decomposition.c | |
Program to compute the QR decomposition of a given matrix. | |
qr_eigen_values.c | |
Compute real eigen values and eigen vectors of a symmetric matrix using QR decomposition method. | |
realtime_stats.c | |
Compute statistics for data entered in rreal-time. | |
secant_method.c | |
Secant Method implementation. | |