Code for DFT without using built-in functions | MATLAB

preview_player
Показать описание
Code is given in the comment section.

Learn Digital Signal Processing using MATLAB:

Learn Complete Machine Learning & Data Science using MATLAB:

Learn Complete Image Processing & Computer Vision using MATLAB:

🙏🙏🙏🙏🙏🙏🙏🙏
YOU JUST NEED TO DO
3 THINGS to support my channel
LIKE
SHARE
&
SUBSCRIBE
TO MY YOUTUBE CHANNEL

#MATLAB #DigitalSignalProcessing #SignalProcessing
Рекомендации по теме
Комментарии
Автор

Code:


clc
clear all
close all
x=input('Enter the sequence:');
n=input('Enter the time sample:');
N=input('Enter value greater than or equal to length(x)');
if(N>length(x))
for i=1:N-length(x)
x=[x 0];
end
end
X=[];
xx=0;
for k=0:N-1
for n=0:N-1
xx=xx+x(n+1)* exp(-j*2*pi*n*k/N);
end
X=[X xx];
xx=0;
end

KnowledgeAmplifier
Автор

Great video! It would be good to have a video for IDFT for comparison

amiltonmanuelpensamento
Автор

please share the matlab code for idft without using any inbuilt function as well

vermatushant
Автор

Hi, I want to do DFT coding for audio

abdalrahmanaljaly
Автор

why this doesn't work?
k = 0 : N-1
for i =1:N
X(i) =
end

syedfariduddin
Автор

I need FFT code without using intrinsic function

changbadinesh
Автор

please explain me.. why this part of code is not working for sigma code?
for k=1:N
XK(k) =
end

dharantejav
Автор

chilla kyun rha he re ...kuch smjh nhi arha

ayashsharma
visit shbcf.ru