How the calculate laplace x(t) = (exp^-at)*u(t) matlab?
9 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Furkan Ozkan
le 15 Juin 2021
Réponse apportée : Rahul R
le 11 Oct 2022
How the calculate laplace transform on matlab?
x(t) = (exp^-at)*u(t)
0 commentaires
Réponse acceptée
Mouhamed Niasse
le 15 Juin 2021
Modifié(e) : Mouhamed Niasse
le 15 Juin 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)
Plus de réponses (1)
Voir également
Catégories
En savoir plus sur Symbolic Math Toolbox dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!