MATLAB function block error in Simulink
20 次查看(过去 30 天)
显示 更早的评论
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
0 个评论
采纳的回答
Abdolkarim Mohammadi
2020-9-24
编辑:Abdolkarim Mohammadi
2020-9-24
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 个评论
Abdolkarim Mohammadi
2020-9-24
编辑:Abdolkarim Mohammadi
2020-9-24
As far as I know, there is no way. As emphasized by documentation and the top contributor of this forum.
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Simulink Functions 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!