MATLAB function block error in Simulink

7 Ansichten (letzte 30 Tage)
Rubeena Parveez
Rubeena Parveez am 24 Sep. 2020
Hi,
I am trying to run a function in Simulink model. I have the function working without any error if I call it in an m-script. However, if I add the same function in MATLAB function block, I have dimension errors.
Why don't I see these errors when I call it in m-script? Is there is a way to debug this?
Thanks

Akzeptierte Antwort

Abdolkarim Mohammadi
Abdolkarim Mohammadi am 24 Sep. 2020
Bearbeitet: Abdolkarim Mohammadi am 24 Sep. 2020
Unlike m-file functions, MATLAB function block does not apply automatic array expansion. The simplest way to overcome is to define your m-file function as an extrinsic function in the MATLAB function block.
function v = fcn (u) % MATLAB function block
coder.extrinsic ('MATLAB function name'); % m-file function
  6 Kommentare
Rubeena Parveez
Rubeena Parveez am 24 Sep. 2020
Thank you, this works but I read that coder.extrinsic does not support code generation. Is there any other way to do this?
Abdolkarim Mohammadi
Abdolkarim Mohammadi am 24 Sep. 2020
Bearbeitet: Abdolkarim Mohammadi am 24 Sep. 2020
As far as I know, there is no way. As emphasized by documentation and the top contributor of this forum.

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Simulink Functions finden Sie in Help Center und File Exchange

Produkte


Version

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by