how to find Laplace transform of u(-t) in MATLAB?

5 次查看(过去 30 天)
To find LT of u(-t) I am trying the following code
f = heaviside(-t)
x = laplace(f)
However I am always getting 0 as output.

采纳的回答

Paul
Paul 2024-2-24
编辑:Paul 2024-2-24
Hi Sundaram,
The function laplace implements the unilateral Laplace transform for causal signals. However, heaviside(-t) is non-causal, so presumably you want the bilateral Laplace transform.
For this problem, you can compute the bilateral Laplace trasform by combining laplace and subs using the time reversal property of the Laplace transform.
Or, you can compute the bilateral Laplace transfrorm using int to compute the bilateral Laplace transform via its defining integral. You will have to use assume to properly define the region-of-convergence to yield the expected result.

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Mathematics and Optimization 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by