matlab coding for the below

조회 수: 1 (최근 30일)
Chiliveri Vinod
Chiliveri Vinod 2018년 9월 17일
편집: Chiliveri Vinod 2018년 9월 19일
r(t) =1 e−γ2t ,t ≤ Ta
4e−γ1(tTb)(sin(2πωat) + 1), otherwise
t=500
Ta=250,Tb=500/2.2,γ1=0.07,γ2=0.004,ωa = 0.06,

채택된 답변

KSSV
KSSV 2018년 9월 17일
Ta=250 ;
Tb=500/2.2 ;
t=1:500 ;
g1=0.07 ;
g2=0.004 ;
Wa = 0.06 ;
r = zeros(length(t),1) ;
r(t<=Ta) = 1-exp(1)-g2*t(t<=Ta) ;
r(t>Ta) = 4*exp(1)-g1*(t(t>Ta)-Tb).*(sin(2*pi*Wa*t(t>Ta))+1) ;
plot(t,r)
  댓글 수: 1
Chiliveri Vinod
Chiliveri Vinod 2018년 9월 19일
편집: Chiliveri Vinod 2018년 9월 19일
thanks for ur rply..

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Embedded Coder에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by