Filter löschen
Filter löschen

How can I get the DFT of this function?

2 Ansichten (letzte 30 Tage)
Omar Esau Pacheco Saavedra
Beantwortet: Nikhil Sonavane am 6 Apr. 2020
How can I get the DFT of this function?
at 3, 7, 16, 128 points and save the results in vectors.
sorry if my question is silly, but i dont have schoolbecause covid 19
x(n) = u(n) − u(n − 4).

Antworten (1)

Nikhil Sonavane
Nikhil Sonavane am 6 Apr. 2020
You may refer to the following code and make changes as per your requirements-
n = 512;
x=[1 1 1 1];
y = fft(x,n);
m = abs(y);
f = (0:length(y)-1)*100/length(y);
You may also refer to the documentation of fft.

Kategorien

Mehr zu Performance and Memory finden Sie in Help Center und File Exchange

Produkte


Version

R2020a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by