C++ Program to multiply two Matrices
One can define matrices in C++ using 2-D arrays. In this post I will assume, that you are familiar with the concepts of…
Read MoreHere you can find all kinds of stuff related to C++ Programming. Being a Physics student I mostly upload the programs related to Physics or Numerical Analysis.
Hope you find it useful.
One can define matrices in C++ using 2-D arrays. In this post I will assume, that you are familiar with the concepts of…
Read MoreNewton-Raphson Method, is a Numerical Method, used for finding a root of an equation. The method requires the knowledge of the derivative of…
Read MoreSo I wrote a code for Gaussian Elimination to solve a system of linear equations a while ago. But recently learned that it…
Read MoreAlgebraic and transcendental equations To find the roots of an equation(algebraic or transcendental) by Bisection Method. Links: …
Read MoreRun the code online here: https://onlinegdb.com/N-6KusNbR Code: Run the code online here: https://onlinegdb.com/N-6KusNbR Sample output Exact (ideal) solution Explaination of the code: Manas…
Read More//Eulers Method to solve a differential equation #include #include #include using namespace std; double df(double x, double y) //function for defining dy/dx {…
Read MoreHere is the Lab Write Up for a C++ Program for Gaussian Elimination to solve a System of Linear Equations. The Write-Up consists…
Read MoreHere is the Lab Write Up for a C++ Program for Backward Difference Table. The Write-Up consists of Algorithm, Flow Chart, Program, and…
Read MoreHere is the Lab Write Up for a C++ Program for making a Forward Difference Table. The Write-Up consists of Algorithm, Flow Chart,…
Read MoreSo I wrote this piece of code for solving a system of linear equations using Gauss-Seidel’s Iterative method in the fifth semester of…
Read More