Why the "Fcn" Simulink block is no longer available since R2020a version?
164 次查看(过去 30 天)
显示 更早的评论
I am using R2021a version and, when I tried to use the Simulink "Fcn" block, I got very surprised in seing that this block is no longer available since R2020a version.
The Help page only says the following: "The Fcn block is no longer available in the Simulink > User-Defined library and is not recommended. For more complicated expressions, use the MATLAB Function block. For less complicated expressions, consider replacing with blocks that model the same behavior."
Before migrate to R2021a version, I used to use this "Fcn" block a lot and it was very helpful in many situations.
My question about it is: why this "Fcn" block is not recommended anymore? Is it something related to performance issues?
I tried to get the answer for this but i didn't find it anywhere.
I would appreciate if someone could give me some orientation about it.
Thanks.
2 个评论
Walter Roberson
2022-9-14
You cannot do acceleration with those blocks -- they only interpret MATLAB code.
采纳的回答
Vignesh Murugavel
2022-10-4
The current impact is that, you will not be able to create Fcn block from library. But you will be able to use models migrated from previous release that contains the block.
The reasons for deprecating the Fcn block are:
- MATLAB function block includes all the functions available in the fcn block and supports much more functions. Maintaining two blocks with similar capabilities often results in challenges for users, including confusions and inconsistent results in some edge cases.
- One example of inconsistency is function names between the Fcn block and MATLAB function blocks, i.e. sgn() in Fcn block v.s. sign() in MATLAB function block.
- Generated code is different in some cases. Code generation for the MATLAB function block usually interacts better with other blocks in the model.
If you need help to find the Fcn block in recent release, please type "simulink_need_slupdate" in the command window to open the library where it is stored.
3 个评论
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Naming Conventions 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!