Matrix »

C program of Transpose of Matrix | Matrix Programs in C

Mr Coder February 23, 2013 0

C program of Transpose of Matrix : Transpose of Matrix is one of the most important operations on Matrices and quite easy one too.  Transpose of Matrix means exchanging all rows of Matrix with

Read More »

C program to implement Cyclic Redundancy Check CRC

Mr Coder February 17, 2013 1

C program to implement Cyclic Redundancy Check CRC : A cyclic redundancy check (CRC) is an error-detecting code commonly used in digital networks and storage devices to detect accidental changes to raw data. Blocks

Read More »

C program of Matrix Multiplication using Pointers

Mr Coder February 15, 2013 1

C program of Matrix Multiplication using Pointers : Let us discuss how to multiply M x N matrix using a C program. First of all we need to understand how an M x N

Read More »

C program to find Inverse of Matrix

Mr Coder September 17, 2012 16

C program to find Inverse of Matrix : For a square matrix A, the inverse matrix is written A-1. When A is multiplied by A-1 the result is the identity matrix I. Non-square matrices

Read More »

C program for Matrix Operations | C codechamp

Mr Coder August 30, 2012 3

C program for Matrix Operations : Hey friends, welcome back! Let us add another generalized code to our portal for Matrix Operations. I have written a C program that asks user several choices related

Read More »

C program to find determinant of Matrix | C code champ

Mr Coder August 22, 2012 7

C program to find determinant of Matrix : The determinant of a matrix is a number that can be calculated from the matrix. It tells us things about the matrix that are useful in

Read More »

C program for Matrix Multiplication | C code champ

Mr Coder August 16, 2012 1

C program for Matrix Multiplication : Let us discuss how to multiply M x N matrix using a C program. First of all we need to understand how an M x N matrix multiplication

Read More »

C program of Gauss Jordan Method

Mr Coder August 15, 2012 2

C program to solve 3 Linear equations using Gauss Jordan Method. This program takes 4X4 matrix values as input and displays output in form of cool animated matrix.Let us see C program of Gauss

Read More »