1% @brief MATLAB Coder script to generate MEX functions
for lsn_
module.
3% This script generates MEX (MATLAB Executable) versions of LSN (Layered
4% Software Network) functions for improved performance.
6% Skipped functions (Coder-incompatible):
7% lsn_max_multiplicity - Uses LayeredNetworkElement OOP enum and a
8% heterogeneous lsn struct with cell-array
9% field 'arrival', neither of which is
10% supported by MATLAB Coder.
12% See also CODER, CODER.CONFIG, CODER.TYPEOF, CODEGEN.
14%% Create configuration object of class 'coder.CodeConfig'.
15cfg = coder.config('mex','ecoder',false);
16cfg.GenerateReport =
false;
17cfg.ReportPotentialDifferences =
false;
18cfg.GenCodeOnly =
false;
20%% No codegen-compatible functions in
this domain.