looking for convoltion signal for output
1 次查看(过去 30 天)
显示 更早的评论
Hi guys i need to find a matlab code which can take 2 inputs of 2 different signals and generates and y(t) signal. This y(t) signal must be a another signal. So I'm basicaly looking for a signal for output. This is soooo urgent.
5 个评论
Steven Lord
2024-3-28
Okay, that sounds like a description of the problem you're trying to solve we can work with.
This sounds like a homework assignment. If it is, show us the code you've written to try to solve the problem and ask a specific question about where you're having difficulty and we may be able to provide some guidance.
If you aren't sure where to start because you're not familiar with how to write MATLAB code, I suggest you start with the free MATLAB Onramp tutorial to quickly learn the essentials of MATLAB.
If you aren't sure where to start because you're not familiar with the mathematics you'll need to solve the problem, I recommend asking your professor and/or teaching assistant for help.
采纳的回答
Voss
2024-3-28
编辑:Voss
2024-3-28
t = linspace(0,10,50);
x = zeros(size(t));
x(t > 0 & t < 5) = 1;
h = zeros(size(t));
h(t > 0 & t < 7) = 1;
y = conv(x,h,'same');
figure
subplot(3,1,1)
stem(t,x)
title('x[t]')
subplot(3,1,2)
stem(t,h)
title('h[t]')
subplot(3,1,3)
stem(t,y)
title('y[t] = x[t]*h[t]')
3 个评论
Voss
2024-3-28
You're welcome!
To make them look like continuous-time signals, plot them with the plot function instead of the stem function. There is no difference other than that, unless you are using the Symbolic Math Toolbox.
For the second problem, approach it the same way I showed in my answer. You can use the colon operator to define n, like n = 0:25 or something, and define x and h in terms of n, as I did in terms of t. Adjust the conditions where x and h are 1 appropriately.
更多回答(0 个)
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!