Why the "Fcn" Simulink block is no longer available since R2020a version?
151 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
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 Commenti
Walter Roberson
il 14 Set 2022
You cannot do acceleration with those blocks -- they only interpret MATLAB code.
Risposta accettata
Vignesh Murugavel
il 4 Ott 2022
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 Commenti
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Naming Conventions in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!