alokverma18/Matrix-Calculator
Matrix Calculator using C language.
Matrix Calculator
Matrix is an Array of Numbers. It is a very useful topic that comes under Linear Algebra in Mathematics.
Matrices play an important role in Computer Science.
They are useful in various Computer programs, in projecting a 3-D image onto a 2-D plane, in coding and encrypting, in graphics and animation, etc.
They play a vital part in Robotic Engineering in controlling movements of robots.
There are various operations related to matrices, this simple program helps in performing some of them :
a) Addition
b) Subtraction
c) Scalar Multiplication
d) Matrix Multiplication
e) Transpose of a matrix
Pre-requisite Knowledge:
<stdio.h>
Arrays
printf Function
scanf Function
for loop
while loop
switch case statements
User-Defined Functions
Thank You