define constants inside a laplace function

I'd like to get the Laplace of a window function. I'd get the right output if I write this:
b=1;a=2;
syms t s
laplace((heaviside(t-a)-heaviside(t-b)))
ans =
exp(-2*s)/s - exp(-s)/s
but I'd like to preserve a and b as constants. However when I defined as " syms t s a b " it doesn't give the Laplace Transform because there's too many variables. Thanks!

回答 (1 件)

Walter Roberson
Walter Roberson 2015 年 9 月 23 日

0 投票

laplace((heaviside(t-a)-heaviside(t-b)), t, s)

カテゴリ

質問済み:

2015 年 9 月 22 日

回答済み:

2015 年 9 月 23 日

Community Treasure Hunt

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

Start Hunting!

Translated by