Umar Bhai
Followers: 0 Following: 0
Statistiques
5 Questions
0 Réponses
RANG
135 665
of 295 448
RÉPUTATION
0
CONTRIBUTIONS
5 Questions
0 Réponses
ACCEPTATION DE VOS RÉPONSES
20.0%
VOTES REÇUS
0
RANG
of 20 234
RÉPUTATION
N/A
CLASSEMENT MOYEN
0.00
CONTRIBUTIONS
0 Fichier
TÉLÉCHARGEMENTS
0
ALL TIME TÉLÉCHARGEMENTS
0
RANG
of 153 872
CONTRIBUTIONS
0 Problèmes
0 Solutions
SCORE
0
NOMBRE DE BADGES
0
CONTRIBUTIONS
0 Publications
CONTRIBUTIONS
0 Public Chaîne
CLASSEMENT MOYEN
CONTRIBUTIONS
0 Point fort
NOMBRE MOYEN DE LIKES
Feeds
Question
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 ...
plus de 5 ans il y a | 1 réponse | 0
1
réponseQuestion
?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
plus de 5 ans il y a | 1 réponse | 0
0
réponseQuestion
(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')
plus de 5 ans il y a | 1 réponse | 0
1
réponseQuestion
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 ≤ ...
plus de 5 ans il y a | 1 réponse | 0
1
réponseQuestion
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...
plus de 5 ans il y a | 1 réponse | 0