Home /
Expert Answers /
Advanced Math /
please-i-want-matlab-code-and-graphs-for-this-function-of-fourier-series-dxample-example-consider-t-pa353
(Solved): please i want matlab code and graphs for this function of Fourier Series Dxample Example: Consider t ...
please i want matlab code and graphs for this function of Fourier Series
Dxample Example: Consider the Heaviside function shifted by 1: f(x) = H (x - 1) = :- -{ { 0, 1. 2 <1, 21. Find the Fourier series with L = 2. The Fourier constant coefficient is 00 )dx 1 The cosine coefficients: : 1 an f(x -- L flrydr = ? 1 d = 1 | 112) cos (19") dr = cos (19) dr ] (5). dx COS dx sin(n) - sin(n7/2) ?? 1 sin ?? n 2
%Matlab code for Fourier Series clear all close all %All time values X=linspace(-2,2,1001); %Loop for creating the function for i=1:length(X) if X(i)<1 zz(i)=0; else zz(i)=1; end end figure(1) %Plotting the function plot(X,zz,'r','Linewidth',3) x