Help recreating square wave from equation
조회 수: 1 (최근 30일)
이전 댓글 표시
Hello,
I need help recreating a square wave from the following equation:
Thanks!
댓글 수: 0
채택된 답변
Sulaymon Eshkabilov
2021년 5월 24일
편집: Sulaymon Eshkabilov
2021년 5월 24일
Hi,
IHere is the correct code:
t = ..
T = ..
n=1:2:15; % By increasing n = 1:2:25, you will get much better approximation.
U1 = sum((4/pi)*(1./n(:)).*sin(2*pi*n(:).*t/T));
figure
plot(t, U1, 'r')
Good luck.
댓글 수: 3
Sulaymon Eshkabilov
2021년 5월 24일
편집: Sulaymon Eshkabilov
2021년 5월 24일
Run this or you can increase more n end value:
n=1:2:75; % By increasing, you will get much better approximation
You can run and plot n=1 and n=1:2:75.
Note that the Gibbs phenomenon (ripples on both ends of the rectangle wave) will be present no matter how big the number of series. Study Gibbs phenomenon: https://en.wikipedia.org/wiki/Gibbs_phenomenon
Rectangle wave shown in your given mathworks source is obtained with square() builtin function that is different from this Fourier series approximation.
Good luck.
추가 답변 (1개)
Sulaymon Eshkabilov
2021년 5월 24일
Hi,
It is a quite straightforward exercise. You can create this signal using a colon operator (:), or [for .. end] or [while .. end] loop. Colon operator is the most efficient one.
Good luck.
댓글 수: 1
참고 항목
카테고리
Help Center 및 File Exchange에서 Fourier Analysis and Filtering에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!