

InterviewSolution
Saved Bookmarks
1. |
The signal get shifted by 1 units in time due to the following code: conv([ 1 2 3],[ 0 1 0]).(a) True(b) FalseThis question was posed to me in a job interview.My question is based upon Convolution topic in chapter Digital Signal Processing of MATLAB |
Answer» RIGHT OPTION is (a) True Easy explanation: The 2^nd ROW vector, in the INPUT, acts like an impulse function DELAYED by 1 unit in time and exists only at t=1 unit in time. Thus, the above statement is true. |
|