Umar Bhai
Followers: 0 Following: 0
Statistica
5 Domande
0 Risposte
RANK
135.673
of 295.467
REPUTAZIONE
0
CONTRIBUTI
5 Domande
0 Risposte
ACCETTAZIONE DELLE RISPOSTE
20.0%
VOTI RICEVUTI
0
RANK
of 153.912
CONTRIBUTI
0 Problemi
0 Soluzioni
PUNTEGGIO
0
NUMERO DI BADGE
0
CONTRIBUTI
0 Post
CONTRIBUTI
0 Pubblico Canali
VALUTAZIONE MEDIA
CONTRIBUTI
0 Punti principali
NUMERO MEDIO DI LIKE
Feeds
Domanda
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 ...
oltre 5 anni fa | 1 risposta | 0
1
rispostaDomanda
?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
oltre 5 anni fa | 0 risposte | 0
0
risposteDomanda
(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')
oltre 5 anni fa | 1 risposta | 0
1
rispostaDomanda
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 ≤ ...
oltre 5 anni fa | 1 risposta | 0
1
rispostaDomanda
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...
oltre 5 anni fa | 1 risposta | 0