Initialize Simulink's "MATLAB System" block for codegen with unsupported codegen functions at "setup time"
10 views (last 30 days)
Show older comments
Jordan McBain
on 22 Sep 2021
Commented: Salman Ahmed
on 14 Oct 2021
I would like to be able to call unsupported codegen functions (like exist() or evalin()) within a MATLAB System object at setup time so that I can initialize all of the objects necessary internal state. I would like the resulting system object to run in codegen mode.
The only way I've found to do this is to use a static routine in the System object which then modifies blocks in the Simulilnk model. It is very much a work around.
0 Comments
Accepted Answer
Salman Ahmed
on 13 Oct 2021
Hi Jordan,
From what I understand, you want to use functions like evalin in system objects with code generation. You can define these functions as extrinsic using coder.extrinsic. The code generator does not produce code for the body of the extrinsic function and instead uses the MATLAB engine to execute the call. In other words, the code generator excludes the extrinsic function from the generated code.
Have a look at the sample code of a MATLAB System object using evalin:
classdef TimesTwo < matlab.System
%TimesTwo Multiply input by 2
% obj = TimesTwo returns a System object, obj, that
% multiples its input by two.
methods(Access = protected)
function y = stepImpl(~, u)
y=0; % Important to preallocate space for y
coder.extrinsic('evalin'); % Bypass C/C++ code generation for evalin
x = evalin('base','a'); % a=2 is defined in MATLAB workspace
y = x * u;
end
end
end
2 Comments
Salman Ahmed
on 14 Oct 2021
Hi,
There are a few limitations to the use of coder.extrinsic. It is advised not to assign property values using the constructor. This practice can cause problems if you use the System object in multiple environments (such as in a System block, in a MATLAB script, and in generated code). Instead, you can write coder.extrinsic functions inside setupImpl and that will work.
More Answers (0)
See Also
Categories
Find more on Create System Objects in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!