Question

Using MALTAB Compute and plot the inverse Fourier transform of H(w) = e^(-jw/5).

Using MALTAB Compute and plot the inverse Fourier transform of H(w) = e^(-jw/5).

Homework Answers

Answer #1

The matlab code to find inverse fourier is

clc;
close all;
clear all;


syms w x
F = exp(-i*w/5);
y=ifourier(F)

The matlab code to plot the result obtained above

clc;
close all;
clear all;

%we got deltla(x-1/5) so

x = -0.1:0.1:0.5;
y = dirac(x-0.2);
idx = y == Inf; % find Inf
y(idx) = 1;     % set Inf to finite value
stem(x,y)

(If you have any query leave a comment, Thank you)

Know the answer?
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for?
Ask your own homework help question
Similar Questions
Find the Fourier transform of ?(?) = { 5? 2 , ?? |?| < ? 0,...
Find the Fourier transform of ?(?) = { 5? 2 , ?? |?| < ? 0, ?? |?| ≥ ? a=7
a) Find the Fourier cosine transform of e^(-ax), given a>0. b) Use item (a) above to...
a) Find the Fourier cosine transform of e^(-ax), given a>0. b) Use item (a) above to find the Fourier sine transform of e^(-ax)/x, given a > 0.
1. Write a MATLAB function to determine the discrete-time Fourier Transform (H(?)) of the following sequence....
1. Write a MATLAB function to determine the discrete-time Fourier Transform (H(?)) of the following sequence. Plot its magnitude and phase. You can use the dtft command and use the abs, angle and plot commands to plot the results. x(n) = {4, 3, 2, 1, 2, 3, 4}. 2. Analytically determine H(z) and plot its magnitude and phase for the following system using freqz. y(n) = 2x(n) + x(n ? 1) ? 0.25y(n ? 1) + 0.25y(n ? 2). 3....
Use the Convolution Theorem to compute the inverse transform of the following: a. F(s)= (2 /...
Use the Convolution Theorem to compute the inverse transform of the following: a. F(s)= (2 / ( s^(2)(s2 +1) )). e. F(s)= e^(−3s)/(s^2)
Determine y(t) using the inverse Laplace transform method for dynamic systems y"(t) + 9y(t) = e^t...
Determine y(t) using the inverse Laplace transform method for dynamic systems y"(t) + 9y(t) = e^t y(0)= -2 y'(0)= 5
What's the Fourier transform of e^[-absolute value(t)/a]*cos(b*t) where a and b are constants.
What's the Fourier transform of e^[-absolute value(t)/a]*cos(b*t) where a and b are constants.
y[n] =b(ax[n] +x[n-1]+ax[n-2]) where a&b >0. Find the frequency response of the system H(e^jw). Determine the...
y[n] =b(ax[n] +x[n-1]+ax[n-2]) where a&b >0. Find the frequency response of the system H(e^jw). Determine the values of a & b, if the magnitude response of the filter at w = 0 is 1 and at w =pi÷2 is 0.5. thanks
(a) H(z) = 3z^2 + 2 + z^-1 + z^-3.What is the inverse z-transform of H(z)?...
(a) H(z) = 3z^2 + 2 + z^-1 + z^-3.What is the inverse z-transform of H(z)? (b) If H(z) in part (a) is the transfer function of a system. What is the difference equation for this system? (c) If x[n] = [ 2 ,−1, 3 ], (where n_0 = -1) What is its z-transform?
Use the convolution theorem to find the inverse Laplace transform of H(s) =  1/(s^2+a^2)^2
Use the convolution theorem to find the inverse Laplace transform of H(s) =  1/(s^2+a^2)^2
(TCO5) Find the inverse z-transform of h(z)=(z)/(z-0.6) and determine its numerical value for n = 2.
(TCO5) Find the inverse z-transform of h(z)=(z)/(z-0.6) and determine its numerical value for n = 2.