LINE Solver
MATLAB API documentation
Loading...
Searching...
No Matches
mexify.m
1% @brief MATLAB Coder script to generate MEX functions for lsn_ module.
2%
3% This script generates MEX (MATLAB Executable) versions of LSN (Layered
4% Software Network) functions for improved performance.
5%
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.
11%
12% See also CODER, CODER.CONFIG, CODER.TYPEOF, CODEGEN.
13
14%% Create configuration object of class 'coder.CodeConfig'.
15cfg = coder.config('mex','ecoder',false);
16cfg.GenerateReport = false;
17cfg.ReportPotentialDifferences = false;
18cfg.GenCodeOnly = false;
19
20%% No codegen-compatible functions in this domain.