필터 지우기
필터 지우기

MATLAB Function Block - output cannot change

조회 수: 4 (최근 30일)
Lau Boon Chong
Lau Boon Chong 2019년 12월 22일
댓글: Walter Roberson 2019년 12월 23일
Hi All
I am trying to generate different output by using MATLAB Function Block. Below is my code, simulink model and output measure by scope.
function duty = fcn()
duty = 0.5;
pause(1);
duty = 0.1;
pause(1);
end
simulink model.jpg
scope.jpg
However, the output of the function block always come from the last value. Anything wrong about my code?
  댓글 수: 3
Lau Boon Chong
Lau Boon Chong 2019년 12월 23일
Hi, thank for your reply. Actually I am trying to write an algorithm for my simulink model. I am thinking to use MATLAB block to implement it. The above example is just my experiment. My algorithm have to real time read different data from excel files and generate corresponding different outputs. Anyway suggestion from you how to implement it? Thank you.
Walter Roberson
Walter Roberson 2019년 12월 23일
In Simulink, a MATLAB Function Block can emit outputs only when it returns. The outputs returned can potentially be vectors or arrays, and are not necessarily fixed size.
However, if you return N output values from a single Function Block invocation, how do you want those treated in time? Do you want to queue those N values in a bunch, and release one value per time-step? Do you want to process all N of the values in a group in the same time step? Do you want a series of blocks to suddenly run N times faster so that at the end of the time step for the Function Block, all N of the outputs have been processed one at a time?

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

답변 (0개)

카테고리

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

제품


릴리스

R2019a

Community Treasure Hunt

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

Start Hunting!

Translated by