필터 지우기
필터 지우기

stateflow interpretation blocks- integrator

조회 수: 1 (최근 30일)
Samah EL QASSAH
Samah EL QASSAH 2016년 10월 20일
답변: Muthukumar Ganesan 2022년 8월 16일
Hi!
Can you please help me to interpret these blocks please? I'm beginner in stateflow.

답변 (1개)

Muthukumar Ganesan
Muthukumar Ganesan 2022년 8월 16일
Hi,
These are Causal Discrete systems. Let's assume input is x and output is y.
Hope you are good at C.
Case 1: Accumulates x for the subsequent samples with no limit on its ouput. There is a possibility out of bound.
y(n) = x(n) + y(n-1)
Case 2: Accumulates x for the subsequent samples with a limit of -10 to +10. No possibility of out of bound.
Temp = x(n) + y(n-1)
if Temp > 10
y(n) = 10
else if Temp < -10
y(n) = -10
else
y(n) = Temp
Thanks.

카테고리

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

Community Treasure Hunt

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

Start Hunting!

Translated by