fork download
  1. clc;
  2. clear all;
  3. close all;
  4. % Define time vector
  5. t = 0:0.016:1;
  6. % Define parameters for the triangular wave
  7. a = 10;
  8. % Amplitude
  9. f = 50;
  10. w = 0.6;
  11. % Frequency in Hz
  12. % Duty cycle (0.5 for symmetrical triangular wave)
  13. y = a*sawtooth(2*pi*f*t, w); % Generate triangular wave
  14. % Plot the triangular wave
  15. figure;
  16. subplot(2,1,1);
  17. plot(t, y, 'r');
  18. axis([0 1 -3 3]);
  19. xlabel('Time in seconds');
  20. ylabel('Amplitude');
  21. title('Triangular Wave');
  22. % Fourier Series Approximation
  23. T = 1/f; % Period of the signal
  24. N = 10; % Number of terms in the Fourier Series
  25. f_approx = zeros(size(t)); % Initialize Fourier series approximation
  26. % Fourier Series Approximation using numerical integration (trapz)
  27. for n = 1:N
  28. % Calculate Fourier coefficients a_n and b_n using numerical integration (trapz)
  29. an = (2/T) * trapz(t, y .* cos(2*pi*n*f*t)); % Fourier coefficient for cos term
  30. bn = (2/T) * trapz(t, y .* sin(2*pi*n*f*t)); % Fourier coefficient for sin term
  31. % Add terms to the Fourier series approximation f_approx = f_approx + an * cos(2*pi*n*f*t) + bn * sin(2*pi*n*f*t);
  32. % Plot Fourier Series approximation
  33. subplot(2,1,2);
  34. plot(t, y, 'b', t, f_approx, 'm');
  35. legend('Original Triangular Wave', 'Fourier Series Approximation');
  36. xlabel('Time in seconds');
  37. ylabel('Amplitude');
  38. title('Fourier Series Approximation to Triangular Wave');
Success #stdin #stdout 0.03s 25924KB
stdin
Standard input is empty
stdout
clc;
clear all;
close all;
% Define time vector
t = 0:0.016:1;
% Define parameters for the triangular wave
a = 10;
% Amplitude
f = 50;
w = 0.6;
% Frequency in Hz
% Duty cycle (0.5 for symmetrical triangular wave)
y = a*sawtooth(2*pi*f*t, w); % Generate triangular wave
% Plot the triangular wave
figure;
subplot(2,1,1);
plot(t, y, 'r');
axis([0 1 -3 3]);
xlabel('Time in seconds');
ylabel('Amplitude');
title('Triangular Wave');
% Fourier Series Approximation
T = 1/f; % Period of the signal
N = 10; % Number of terms in the Fourier Series
f_approx = zeros(size(t)); % Initialize Fourier series approximation
% Fourier Series Approximation using numerical integration (trapz)
for n = 1:N
% Calculate Fourier coefficients a_n and b_n using numerical integration (trapz)
an = (2/T) * trapz(t, y .* cos(2*pi*n*f*t)); % Fourier coefficient for cos term
bn = (2/T) * trapz(t, y .* sin(2*pi*n*f*t)); % Fourier coefficient for sin term
% Add terms to the Fourier series approximation                  f_approx = f_approx + an * cos(2*pi*n*f*t) + bn * sin(2*pi*n*f*t);
end
% Plot Fourier Series approximation
subplot(2,1,2);
plot(t, y, 'b', t, f_approx, 'm');
legend('Original Triangular Wave', 'Fourier Series Approximation');
xlabel('Time in seconds');
ylabel('Amplitude');
title('Fourier Series Approximation to Triangular Wave');