How the calculate laplace x(t) = (exp^-at)*u(t) matlab?
7 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Furkan Ozkan
el 15 de Jun. de 2021
Respondida: Rahul R
el 11 de Oct. de 2022
How the calculate laplace transform on matlab?
x(t) = (exp^-at)*u(t)
0 comentarios
Respuesta aceptada
Mouhamed Niasse
el 15 de Jun. de 2021
Editada: Mouhamed Niasse
el 15 de Jun. de 2021
Hello,
Here is what i achieved. You'll need to re-define your constant "a" and your function u(t).
Hope it helps you understand.
syms t
a=1
u=t
x = exp(-a*t)*u
laplace(x)
Más respuestas (1)
Ver también
Categorías
Más información sobre Symbolic Math Toolbox en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!