how can i calculate fourier?
2 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
clear all;
close all;
syms t s w
Gs=1/(s+5);
Gjw=subs(Gs,s,j*w);
%creamos la onda cuadrada con T=6s
A=1;
Fs=10000;
f=0.1666; T=3*(1/f);
c=50;
t=0:1/Fs:T-1/Fs;
x=A*square(2*pi*f*t,c)%onda cuadrada de T=6s
X=fourier(x)
%It gives me this error: Undefined function 'fourier' for input arguments of type 'double'.
0 commentaires
Réponses (1)
John D'Errico
le 12 Fév 2022
FOURIER is a function that is part of the symbolic toolbox. If you do not have that toolbox, then you could not use it. However, your problem is that you are trying to use it on a sequence of numbers, not on a true square wave. And the function SQUARE is part of the signal processing toolbox. It works with numbers and series of them.
So if you want to compute a symbolic Fourier series, then you need to create symbolic objects. If you want to compute a fast fourier transform, which can be used on pure numbers, then use FFT. But only you know what it is you really wanted to do here.
2 commentaires
John D'Errico
le 12 Fév 2022
Modifié(e) : John D'Errico
le 12 Fév 2022
Sigh. Yet you still have not decided if you want to do this in a symbolic form, and plot THAT in some way, or if you want to compute the FFT, and plot that.
fourier is a function that works on symbolic expressions. My guess is you really wanted to compute the FFT. So use fft. Remember that it will have real and imaginary components. So you will need to decide how to plot a complex variable. What will be on the x axis? The y axis?
Or, maybe you are asking how to compute a fourier expansion of that sequence, and then reconstitute the original function from the truncated Fourier approximation you computed via FFT, and see what it looks like. For example, do you see Gibbs phenomena around the edges of the square wave?
Voir également
Catégories
En savoir plus sur Fourier Analysis and Filtering dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!