-
Matlab program for circular convolution using dft and idft?
clcclear allclose alla = [1 2 3 4]; b = [6 7 8 9 10];f=length(a);g=length(b);h=(f+g-1);i=[a,zeros(1,(h-f))];j=[b,zeros(1,(h-g))];y1 = fft(i);y2 = fft(j);z = y1.*y2;c = ifft(z);subplot(2,2,1);...
-
C plus plus program using for?
This program is a timer I made a while back: #include <stdio.h> int main(); { int num=0; int start=0; int start2=0; start = 0; start2 = 0; /*The code goes in order like: system("CLS"); printf("...
-
Factorial program in c using for loop?
write a prohrame to accept the first and last number
-
Strong number program using c?
Nikhil Aggarwal
strong_number: The sum of factorials of digits of a number is equal to the original number.
void strong_number()
{
int num,i,p,r,sum=0,save_num;
printf("\nEnter a...