coder.ScreenerInfo - Code generation readiness information - MATLAB (original) (raw)
Main Content
coder.ScreenerInfo Properties
Code generation readiness information
Since R2022a
The coder.ScreenerInfo
properties contain information about code generation readiness of your MATLAB® code. The coder.screener function returns this object as an optional output argument. Allcoder.ScreenerInfo
properties are read-only. You can use the dot notation to query these properties.
The coder.ScreenerInfo
object contains information about:
- MATLAB files analyzed by the Code Generation Readiness Tool
- Code generation readiness messages
- Calls to functions not supported for code generation
You can export the entire code generation readiness report to a MATLAB string by passing the coder.ScreenerInfo
object to the object function textReport
. See Access Code Generation Readiness Results Programmatically.
Note
Your MATLAB source code is included in the properties of thecoder.ScreenerInfo
object.
Files
— MATLAB files analyzed for code generation readiness
array of coder.CodeFile
objects | array of coder.File
objects
This property is read-only.
Heterogeneous array containing descriptions of files that were analyzed for code generation readiness. Each element of the array contains a description of one file.
- If an file contains text, the corresponding array element is a
coder.CodeFile
object. See coder.CodeFile Properties. - If an file does not contain text (for example, a P-coded file), the corresponding array element is a
coder.File
object. See coder.File Properties.
Messages
— Code generation readiness error or warning messages
array of coder.Message
objects
This property is read-only.
Array containing descriptions of error and warning messages produced by the code generation readiness tool. Each element of the array is a coder.Message
object that contains the description of one message. See coder.Message Properties.
UnsupportedCalls
— Calls to functions not supported for code generation
array of coder.CallSite
objects
This property is read-only.
Array containing descriptions of calls to functions not supported for code generation in your MATLAB code. Each element of the array is a coder.CallSite
object that contains the description of one such function call. See coder.CallSite Properties.
Version History
Introduced in R2022a