Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Write a matlab function called compute_dft.m to compute the DFT of a given discrete signal, f[n]. The discrete signal should be an input, and the

Write a matlab function called compute_dft.m to compute the DFT of a given discrete signal, f[n]. The discrete signal should be an input, and the DFT, F[k] should be an output. Please compute DFT without using the fft() command or any for loops.

I currently have code that looks like this (but this uses for loops, which I don't want):

function[fk] = compute_dft(xn,n) %computing for xn input

L = length(xn); %go through whole thing

%checking the length

if(n

x1= [xn zeros(1,n-L)]; %zeros in the input sequence

for n=0:1:n-1; for k=0:1:n-1; p= exp(2*pi*-j*n*k/N); x2(k+1,n+1) =p; end end fk = x1*x2;

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

More Books

Students also viewed these Databases questions