Clear Filters
Clear Filters

There is any difference in matlab between normal calculations to discrete calculations ?

1 view (last 30 days)
When I am trying to compute x*x*x (when * means convolution) I dont get the right answer.
X[n]=(7^n)heviside[-n] and I know that x*x*x=0.5(n-1)(n-2)(7^n)(heaviside[-n])=y[n]
my code is
syms n; X=(7^n)heviside(-n); y=conv(x)*conv(x)*conv(x);

Answers (0)

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!