What's the difference between MATLAB function block and Interpreted MATLAB function block?
57 ビュー (過去 30 日間)
古いコメントを表示
Hi, I'm studying MATLAB function Block and I have some questions.
There is another Block in User-Defined Block Library, Interpreted MATLAB function block. Maybe it is similar to MATLAB function block. But I can't fine the apparent difference. Everything's Okay to both blocks. (Maybe it is due to my function is simple.)
Is there any good reason to realize another('interpreted') MATLAB function block?
0 件のコメント
採用された回答
Sebastian Castro
2015 年 7 月 3 日
The MATLAB Function block is compiled before run-time (R2014b and earlier, it generates C code and compiles; R2015a and later, it is compiled just-in time). The Interpreted MATLAB Function block uses the MATLAB interpreter to execute an existing MATLAB function.
So, what does this mean? If you're just running simulations on your desktop, not much. This is likely why you do not see any difference. However, if you're generating code from your model, you cannot do so with the Interpreted MATLAB Function block.
Also, the MATLAB Function block is a lot more customizable, as you have more control over the properties (size/data type/data scope) of all the variables, you can create tunable parameters in the blocks, etc.
In summary, the MATLAB Function block is way more flexible and I would recommend using it in most situations. The Interpreted MATLAB Function block can be easier to set up if you have already have an existing function, and it lets you use the full range of MATLAB as long as you're using the model strictly for desktop simulation.
- Sebastian
その他の回答 (1 件)
Navid Mohammadzadeh
2017 年 11 月 15 日
Hello. I shared with you a picture which tells you about the difference between different function block in MATLAB. I hope you enjoy it. You can find it also in the MathWork.
1 件のコメント
Sebastian Castro
2017 年 11 月 15 日
The link is here:
- Sebastian
参考
カテゴリ
Help Center および File Exchange で User-Defined Functions についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!