Write a matlab code to generate fourier series for continuous periodic functions.
12 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Fourier series for continuous periodic functions
1 comentario
Geoff Hayes
el 20 de Ag. de 2020
Abhishek - is this homework? Please show us what you have tried so far.
Respuestas (1)
Shubham Rawat
el 25 de Ag. de 2020
Hi Abhishek,
Here is an example of generating fourier transform of a continous funtion:
a = 1;b = 1; %initializing constants.
t = 0:0.01:1;
f = a*sin(b*t); % sine function
f_FT = fourier(f) %fourier transformation
You may refer the link below for more details:
0 comentarios
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!