Answered step by step
Verified Expert Solution
Question
1 Approved Answer
please provide comments to explain the code, it's for signal and systems course, need it in matlab, please? Problem 1 MATLAB provides a built-in function
please provide comments to explain the code, it's for signal and systems course,
need it in matlab, please?
Problem 1 MATLAB provides a built-in function conv() that performs discrete-time convolution of two discrete-time sequences. For the first problem, you will create a your own MATLAB function num_conv() that uses the built-in conv() function for numerically evaluating continuous-time convolution integrals. The function num_conv() will take two waveforms, each defined as a vector of time points and a vector of signal values, and will return the numerical approximation of the continuous-time convolution. The function should follow the following syntax: function (y, ty] = num_conv (x, tx,h, th) % syntax: [y, ty] = num_conv (x, tx, h, th) % % Inputs: % input signal vector % tx vector of time points in x % h impulse response vector % th vector of time points in h You should ensure that the sampling time for x and h are the same i.e. vectors tx and th should use the same increment/sampling % time % % Outputs: % y -- output signal vector, ty -- vector of time points in y length(y) = length(x) + length(h) - 1 % % The function num_conv() should plot the input x, the impulse response h and the final output y against their corresponding time vectors tx, th and ty, respectively. Make sure that tx and th use the same sampling time and that the time vector ty is calculated correctlyStep by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started