Algorithms_in_C 1.0.0
Set of algorithms implemented in C.
|
Files | |
file | durand_kerner_roots.c |
Compute all possible approximate roots of any given polynomial using Durand Kerner algorithm | |
file | lu_decompose.c |
LU decomposition of a square matrix | |
file | newton_raphson_root.c |
Find approximate solution for \(f(x) = 0\) using Newton-Raphson interpolation algorithm. | |
file | ode_forward_euler.c |
Solve a multivariable first order ordinary differential equation (ODEs) using forward Euler method | |
file | ode_midpoint_euler.c |
Solve a multivariable first order ordinary differential equation (ODEs) using midpoint Euler method | |
file | ode_semi_implicit_euler.c |
Solve a multivariable first order ordinary differential equation (ODEs) using semi implicit Euler method | |
file | qr_decompose.h [code] |
Library functions to compute QR decomposition of a given matrix. | |
file | qr_decomposition.c |
Program to compute the QR decomposition of a given matrix. | |
file | qr_eigen_values.c |
Compute real eigen values and eigen vectors of a symmetric matrix using QR decomposition method. | |
file | realtime_stats.c |
Compute statistics for data entered in rreal-time. | |