Skip to content

gr8Adakron/Circular-Convolution-Program-in-C

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 

Repository files navigation

#Circular Convolution Program in C

#OUTPUT OF PROGRAM :

Enter the length of the first matrix : 3 .tab{padding-left: 5px} Enter the elements of the first matrix : 12
10
20


Enter the length of the Second matrix : 5

Enter the elements of the first matrix : 10
5
8
7
6

First matrix before padding:
[ 12 10 20 ]

Second matrix before padding:
[ 10 5 8 7 6 ]

Both the Matrix After padding :
1st Matrix : [12, 10, 20, 0, 0]
2nd Matrix : [10, 5, 8, 7, 6]

******* Final Matrix *****
| 10 6 7 8 5 |
| 5 10 6 7 8 |
| 8 5 10 6 7 |
| 7 8 5 10 6 |
| 6 7 8 5 10 |

******* Circular Convulated Matrix *****

[ 320 280 346 264 302 ]

About

Implementation of Circular Convolution Program in C

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages