What's the difference between MATLAB function block and Interpreted MATLAB function block?
57 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
JangHo Cho
el 3 de Jul. de 2015
Comentada: Sebastian Castro
el 15 de Nov. de 2017
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 comentarios
Respuesta aceptada
Sebastian Castro
el 3 de Jul. de 2015
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
Más respuestas (1)
Navid Mohammadzadeh
el 15 de Nov. de 2017
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 comentario
Sebastian Castro
el 15 de Nov. de 2017
The link is here:
- Sebastian
Ver también
Categorías
Más información sobre User-Defined Functions en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!