MATLAB Function Block - output cannot change

3 vues (au cours des 30 derniers jours)
Lau Boon Chong
Lau Boon Chong le 22 Déc 2019
Commenté : Walter Roberson le 23 Déc 2019
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 commentaires
Lau Boon Chong
Lau Boon Chong le 23 Déc 2019
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 le 23 Déc 2019
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?

Connectez-vous pour commenter.

Réponses (0)

Produits


Version

R2019a

Community Treasure Hunt

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

Start Hunting!

Translated by