define tau in transfer function

23 ビュー (過去 30 日間)
mehmet gürbüz
mehmet gürbüz 2020 年 5 月 12 日
コメント済み: mehmet gürbüz 2020 年 5 月 12 日
Hello ;
C(s) = (1/s) * (1/𝛕s+1) my transfer function
𝛕(tau)= 0.1 and t(time)=0:0.01:
firstly, ı want to inverse laplace for transfer function but how is define tau
and how can i plot c(t)

回答 (1 件)

Birdman
Birdman 2020 年 5 月 12 日
The following might help:
syms s t tau
Cs=(1/s)*(1/(tau*s+1));
c(t,tau)=ilaplace(Cs)
T=0:0.01:1;
plot(T,c(T,0.1))
  1 件のコメント
mehmet gürbüz
mehmet gürbüz 2020 年 5 月 12 日
thank you sir

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeCalculus についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by