1% @brief MATLAB Coder script to generate MEX functions
for npfqn_
module.
3% This script generates MEX (MATLAB Executable) versions of npfqn_
4% (Non-Product-Form Queueing Network) functions for improved performance.
6% Skipped functions (Coder-incompatible):
7% npfqn_nonexp_approx - Uses sn struct + SchedStrategy /
8% GlobalConstants OOP enums and dispatches on
9% string method, none of which is supported
11% npfqn_traffic_merge - Cell-array-of-MMAPs argument and dynamic
12% struct dispatching on config.merge /
13% config.compress strings.
14% npfqn_traffic_merge_cs - Cell-array-of-MMAPs argument with
15% dynamic-typed config struct.
16% npfqn_traffic_split_cs - Builds variable-shape cell-of-cell output
17% (varargout) which Coder cannot infer.
19% See also CODER, CODER.CONFIG, CODER.TYPEOF, CODEGEN.
21%% Create configuration object of class 'coder.CodeConfig'.
22cfg = coder.config('mex','ecoder',false);
23cfg.GenerateReport =
false;
24cfg.ReportPotentialDifferences =
false;
25cfg.GenCodeOnly =
false;
27%% No codegen-compatible functions in
this domain.