set. How to do it using matlab?

조회 수: 2 (최근 30일)
adriane duarte
adriane duarte 2020년 10월 29일
답변: Walter Roberson 2020년 10월 29일
Hello!!
could someone help me build this system in matlab?
how could it be done?

답변 (1개)

Walter Roberson
Walter Roberson 2020년 10월 29일
logical indexing, if you are processing a vector of x values.
piecewise() if you have the symbolic toolbox and you are building a function or formula
If you need an anonymous function, then consider the form
value1 .* (condition1) + value2 .* (condition2)
such as
2.*(x>3) + -5*(x<=3)
that would implement: "2 if x > 3, -5 if x <= 3"
You do not actually need two conditions if you are creative enough: you have f(x) = -f(-x)

카테고리

Help CenterFile Exchange에서 Dynamic System Models에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by