Umar Bhai
Followers: 0 Following: 0
Feeds
提问
Consider a signal ?[?] = (0.2)??[?]. plot the magnitude, angle, real and imaginary parts of ?(???). Plot ?(???) at 101 101 equispaced points between 0 and ?. help me to find error in subplot command. all four items are not plotted.
w = [0:1:100]*pi/100; X = exp(j*w) ./ (exp(j*w) - 0.2*ones(1,101));magX = abs (X) ; angX = angle (X) ;realX = real(X); imagX ...
5 years 前 | 1 个回答 | 0
1
个回答提问
?1(?) = 1 + 2?−1 + 3?−2 and ?2(?) = 4 + 5?−1 + 6?−2. Use MATLAB to generate a sequence ?3(?) = ?1(?)?2(?). Utilize either the multiplication property or the convolution property. send me some other proper code if anyone have
>> x1=[1 2 3]; >> x2=[4 5 6]; >> x3=conv(x1,x2) Output: x3 = 4 13 28 27 18
5 years 前 | 0 个回答 | 0
0
个回答提问
(input given as ?[?] = {1, 2,3} impulse given as ℎ[?] = {4,5,6} for 0 ≤ ? ≤ 2.) there is an error in my output..in sketching of y[n], we required a discrete in time signal but my output signal is continuous as seen clearly in screenshot below
n = 0:2; x =[1 2 3]; h=[4 5 6]; y=conv(x,h); plot(y) xlabel('time axis'); title('output of a system'); ylabel('y axis')
5 years 前 | 1 个回答 | 0
1
个回答提问
a) Consider an input of a system given as ?[?] = {1, 2,3} and the impulse response of a system given ↑ as ℎ[?] = {4,5,6} for 0 ≤ ? ≤ 3. Use MATLAB to find and sketch the output ?[?].
Consider an input of a system given as ?[?] = {1, 2,3} and the impulse response of a system given ↑ as ℎ[?] = {4,5,6} for 0 ≤ ...
5 years 前 | 1 个回答 | 0
1
个回答提问
x(i+1)=y(i)-((f(y(i))/d(y(i)))); // error in this line..
% Program Code of Newton-Raphson Method in MATLAB a=input('Enter the function in the form of variable x:','s'); y(1)=input...
5 years 前 | 1 个回答 | 0