Defining a time varying function

조회 수: 5 (최근 30일)
Deepa Maheshvare
Deepa Maheshvare 2020년 2월 25일
댓글: Adam 2020년 2월 26일
I'd like to create a function that will output a value of a (e.g. a = 10) for time < t0 and value equal to b at time > t0.
Any suggestions on how to create such a function in MATLAB will be helpful

답변 (1개)

Adam
Adam 2020년 2월 25일
편집: Adam 2020년 2월 25일
if t < t0
result = a;
else
result = b;
end
gives what you want for this simple case, provided t0, a, b and t are all passed into the function or defined at the top of the function. If it where more complicated I might suggest other methods but a simple binary threshold output works fine with an if statement.
  댓글 수: 2
Deepa Maheshvare
Deepa Maheshvare 2020년 2월 26일
Many thanks for the answer. Binary threshold output works fine but it creates a discontinuity at t = t0. Could you please suggest continuous functions ? For instance when a > b, I'd like to create a function that will gradually decrease from a to b.
Adam
Adam 2020년 2월 26일
You'd need to rephrase the question to more precisely ask what you want in that case. To fulfill what you asked in the question then including a reasult of mean( [a, b] ) for t == t0 would be the only approach that is slightly less discontinuous.

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

카테고리

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

태그

제품


릴리스

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by