How the calculate laplace x(t) = (exp^-at)*u(t) matlab?
    9 ビュー (過去 30 日間)
  
       古いコメントを表示
    
How the calculate laplace transform on matlab?
 x(t) = (exp^-at)*u(t) 
0 件のコメント
採用された回答
  Mouhamed Niasse
      
 2021 年 6 月 15 日
        
      編集済み: Mouhamed Niasse
      
 2021 年 6 月 15 日
  
      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)
その他の回答 (1 件)
参考
カテゴリ
				Help Center および File Exchange で Symbolic Math Toolbox についてさらに検索
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!