How do I call custom MATLAB functions in code generation templates (.cgt) files?

14 次查看(过去 30 天)
I have a function called "getMatlabVersion.m" in my current folder. I'd like to use it in my custom code generation template file to display the MATLAB version in the banner of each source file.
I have written a .cgt file that has a line with the following:
* MATLAB Version: %<!getMatlabVersion()>
However, when I build the above, I get the following error:
Code Generation 1
Elapsed: 3 sec
Error: File: myCustomTemplate_cgt.tlc
Attempt to call a non-function value: GetMatlabVersion
Error: File: myCustomTemplate_cgt.tlc
Values of NULL type cannot be expanded
How do I call my function within my .cgt file?

采纳的回答

MathWorks Support Team
编辑:MathWorks Support Team 2024-5-8
Code generation templates are eventually generated into .tlc files if you try to call functions within them. This means you can leverage functions from TLC programming.
In TLC programming, you would use the FEVAL function to call any MATLAB functions. Similarly, you can use the same function n your .cgt file, like so:
* MATLAB Version: %<!getMatlabVersion()>
would become 
* MATLAB Version: %<!FEVAL("getMatlabVersion")>
The above will allow you to call custom MATLAB functions from within your .cgt file.
Another way would be to use the same syntax original syntax
* MATLAB Version: %<!getMatlabVersion()>
but also write a custom file processing template that defines the above function. You would attach this file to the model using "Configuration parameters -> Code generation -> templates -> custom file processing" and put your .tlc file there.
The contents of your custom TLC would look like this:
%function getMatlabVersion() void
%assign outBuffer = ""
%openfile outBuffer
%assign result = FEVAL("getMatlabVersion")
%<result>
%closefile outBuffer
%return outBuffer
%endfunction
This requires knowledge of TLC programming. Refer to the following links for more information on the above:

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Embedded Coder 的更多信息

标签

尚未输入任何标签。

产品


版本

R2016b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by