Numerical Methods: It is a repository built to implement Numerical Methods known to me and taught in the course Numerical Methods at IISc (later on planned to be implemented using OpenMP or MPI)
DSA Library: This is a GitHub repository consisting of implementations of Stacks, Queues, and many more. I will update this over time with more and more algorithms and Data Structures implementation, with algorithms from Graph Theory.
TOPSIS and PROMOTHEE: Algorithms for MCDM (Multi-Criteria Decision Making) (using C/C++).
Genetic Algorithm: Optimization using Genetic Algorithm using C/C++ code with a basic implementation of Tournament selection.
Iterative Method: (Dichotomous Search) to fit constants of a non-linear function using experimental data. (Research work on Magnetorheological Fluid) (in C/C++)
Fourier Series of a function: Given a function along with the interval, using this C/C++ code one can find its corresponding Fourier Series expansion. An extension for finding Fourier Series of a Discrete Function.
Collatz Conjecture: (This was for fun) Implementation of one of the unsolved Millenium Prize Problem from Clay Mathematical Institute on Collatz Conjecture. (Start with any Natural Number N and do the following recursively: If it's odd multiply by 3 and add 1; If it's even divide by 2. No matter for what N you start you will always end up at 1. For example, start from 15, 46, 23, 40, 20, 10, 5, 16, 8, 4, 2, 1)
Predicting Steam-Properties (for Energy Systems) using Artificial Neural Networks. (done in R)