?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
1 view (last 30 days)
Show older comments
>> x1=[1 2 3];
>> x2=[4 5 6];
>> x3=conv(x1,x2)
Output:
x3 =
4 13 28 27 18
3 Comments
Raj
on 28 May 2019
So,
x1(?) = 1 + 2?−1 + 3?−2 = 5z-2?
and x2(?) = 4 + 5?−1 + 6?−2= 11z+1?
Is that so?
then
x1=[5 -2]
x2=[11 1]
x3=conv(x1,x2)
is that what you are looking for?
Answers (0)
See Also
Categories
Find more on Startup and Shutdown in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!