Variable change with time interval

조회 수: 5 (최근 30일)
David Cirino
David Cirino 2019년 2월 1일
답변: Kevin Phung 2019년 2월 1일
How can I create a code in matlab that changes the value of a Variable depending on the time interval?
For example different values of X as time progresses:
x=1 for 0<=t<900
x=2 for 900<=t<1800
X=3 for 1800<=t<=2700
X is my variable and t is time.

채택된 답변

Kevin Phung
Kevin Phung 2019년 2월 1일
you can use if/else statements
example:
if and(t >= 0, t < 900)
x=1;
elseif and(t>= 900, t<1800)
x=2;
elseif and(t >= 1800, t<= 2700)
x=3;
end

추가 답변 (0개)

카테고리

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

제품


릴리스

R2018a

Community Treasure Hunt

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

Start Hunting!

Translated by