필터 지우기
필터 지우기

Info

이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.

Is that possible to use Variable-Size Data in stateflow

조회 수: 1 (최근 30일)
Zac li
Zac li 2018년 11월 2일
마감: MATLAB Answer Bot 2021년 8월 20일
I need a Variable-Size parameter in my Stateflow because I only know it's size at the end of the whole process, during this process now data are continually being added into this Variable-Size Parameter.
Is that possible to use Variable-Size Data in Stateflow(to use 'ones' or 'zeros' function in Stateflow), or are any other methods to achieve this purpose?
Just like in MATLAB(I don't know what is the size of A at the beginning of this process):
n = 1;B = [1 0 0 0 1 0 ...];
for i = 1:100
if B(i) == 0
A(n) = 1;
n = n +1;
end
end

답변 (0개)

이 질문은 마감되었습니다.

Community Treasure Hunt

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

Start Hunting!

Translated by