Fourier Series on MATLAB
4 views (last 30 days)
Show older comments
How do i write code to produce periodic functions (including sinusoidal, triangle, sawtooth, square waves) and square pulse trains of varying amplitudes, frequencies, phases, and duty cycles using Fourier Series on MATLAB.
1 Comment
John D'Errico
on 9 Nov 2020
Far too vague to get a serious answer, this question is looking for tutoring in the subject of Fourier series and in MATLAB, but is not a question about anything at this point.
Answers (1)
Setsuna Yuuki.
on 9 Nov 2020
Edited: Setsuna Yuuki.
on 9 Nov 2020
You need know the fuction of each wave form and use a "for" with fourier series.
For example: 

components = 1; t = 0:1e-2:10;
sumatoria = 0; i = 1;
figure;
for k = 1:1:components
n=2*k-1;
serie=2/pi*1/n*sin(n*pi*t);
sumatoria = serie+sumatoria;
end
sumatoria = 1/2+sumatoria;
figure;
plot(t,sumatoria);

0 Comments
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!