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

Illustration
Wynand - 2024-05-08T16:25:03+00:00
Question: How do I call custom MATLAB functions in code generation templates (.cgt) files?

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: % 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?

Expert Answer

Profile picture of John Michell John Michell answered . 2025-11-20

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: %

would become

*       MATLAB Version: %
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: %
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")
%
%closefile outBuffer
%return outBuffer
%endfunction
This requires knowledge of TLC programming. Refer to the following links for more information on the above:
Custom File Processing
TLC Programming


Not satisfied with the answer ?? ASK NOW

Get a Free Consultation or a Sample Assignment Review!