MATLAB: How to call custom MATLAB functions in code generation templates (.cgt) files

Embedded Coder

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?
 

Best Answer

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: