LINE Solver
MATLAB API documentation
Loading...
Searching...
No Matches
mexify.m
1% @brief MATLAB Coder script to generate MEX functions for polling_ module.
2%
3% This script generates MEX (MATLAB Executable) versions of polling-system
4% functions for improved performance.
5%
6% Skipped functions (Coder-incompatible):
7% polling_qsys_1limited - Cell-array-of-MAPs arguments (each MAP is a
8% cell of two matrices), unsupported by Coder.
9% polling_qsys_exhaustive - Same: cell-array-of-MAPs arguments.
10% polling_qsys_gated - Same: cell-array-of-MAPs arguments.
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.