Li Hui Chew
Followers: 0 Following: 0
Statistics
7 Questions
0 Answers
RANK
85 788
of 295 527
REPUTATION
0
CONTRIBUTIONS
7 Questions
0 Answers
ANSWER ACCEPTANCE
28.57%
VOTES RECEIVED
0
RANK
of 20 242
REPUTATION
N/A
AVERAGE RATING
0.00
CONTRIBUTIONS
0 Files
DOWNLOADS
0
ALL TIME DOWNLOADS
0
RANK
of 154 057
CONTRIBUTIONS
0 Problems
0 Solutions
SCORE
0
NUMBER OF BADGES
0
CONTRIBUTIONS
0 Posts
CONTRIBUTIONS
0 Public Channels
AVERAGE RATING
CONTRIBUTIONS
0 Highlights
AVERAGE NO. OF LIKES
Feeds
Question
How to compute Z-transform with Matlab?
% equation given y(n)= x(n)+2x(n-1)x(n-2)+y(n-1)-0.5y(n-2) How to get the z-transform of the equation? % for z-transform sym...
mer än 3 år ago | 1 answer | 0
1
answerQuestion
How to compute poles-zeros using matlab?
H(z)=(1-2^-2)/(1-0.9*z^-1+0.6*z^-2+0.5*z^-3) b=[1 0 -1 0]; a=[1 0.9 0.6 0.5]; % to find zeors zeros=roots(b) % to find pole...
mer än 3 år ago | 1 answer | 0
1
answerQuestion
Compute the Fourier Transform for: x(n)=u(n)-u(n-6); x(n)=[(2^n)*u]*(-n); x(n)=[-2,-1,0,1,2]
For the first equation: x=[1 0 0 0 0 0 -1]; y=fft(x) y = Columns 1 through 3 0.0000 + 0.0000i 0.3765 - 0.7818i ...
mer än 3 år ago | 1 answer | 0
1
answerQuestion
Compute convolution y[n]=x[n]*h[n]: x[n]={2,0,1,-1,3}; h[n]={1,2,0,1}
My approach: x=[2 0 1 -1 3]; h=[1 2 0 1]; % therefore y=conv(x,h) y = 2 4 1 3 1 7 -1 ...
mer än 3 år ago | 1 answer | 0
1
answerQuestion
divide w=3*x^2+8*x+1 and y=x+1; with x=2
My approach to this question is: w=[3 8 1]; y=[0 1 1]; x=[2]; a=polyval(w,x) b=polyval(y,x) a/b Is it the right me...
mer än 3 år ago | 1 answer | 0
1
answerQuestion
Display the polynomial : f(x)-x^5+12.1x^4=40.59x^3-17.015x^2-1.95x+35.88, the calculate f(5)
syms x f=coeff(x^5 - 12.1*x^4 = 40.59*x^3 - 17.015*x^2 -1.95*x + 35.88) % do i need to use this function? % or use print func...
mer än 3 år ago | 2 answers | 0
2
answersQuestion
convolution of 2 signals
2 signals was given: x[n]={(1/2)n}, 0<= n <= 4 0, elsewhere h[n]={1}, -2<= n <= 2 0, elesewhere How to c...
mer än 3 år ago | 1 answer | 0