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

10 visualizaciones (últimos 30 días)
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.

Respuesta aceptada

Paul
Paul el 24 de Feb. de 2024
Editada: Paul el 24 de Feb. de 2024
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.

Más respuestas (0)

Categorías

Más información sobre Mathematics and Optimization en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by