Write a matlab code to generate fourier series for continuous periodic functions.

27 次查看(过去 30 天)
Fourier series for continuous periodic functions

回答(1 个)

Shubham Rawat
Shubham Rawat 2020-8-25
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:

类别

Help CenterFile Exchange 中查找有关 Fourier Analysis and Filtering 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by