Install any skill in seconds. Free to start, no credit card required.
Get Started Free →Converts a double-precision Simulink system or subsystem to single precision using DataTypeWorkflow.Single (Fixed-Point Designer). The single conversion replaces all user-specified double-precision data types, as well as output data types that compile to double precision, with single-precision data types. Use this skill when converting Simulink systems to single precision, reducing memory usage of a Simulink system, optimizing for embedded targets. Do NOT use for standalone MATLAB .m code single
| Test case | Without → With | Effect | Δ tokens | Δ turns |
|---|---|---|---|---|
| case-01 | ✗→✓ | ▲ Improved | 56% | 0% |
| case-02 | ✗→✓ | ▲ Improved | -2% | 0% |
| case-03 | ✗→✓ | ▲ Improved | 14% | 0% |
| case-05 | ✗→✓ | ▲ Improved | 48% | 0% |
| case-07 | ✗→✓ | ▲ Improved | 46% | 0% |
Toolbox: Fixed-Point Designer Function: DataTypeWorkflow.Single.convertToSingle
Converts user-specified double-precision data types — across block settings, Stateflow chart settings, signal objects, and bus objects — to single precision. Boolean, built-in integer (int8, uint8, int16, …), and fixed-point types are left unchanged.
.slx) or subsystem from double-precision to single-precision.m code — use the convertToSingle function with coder.config('single') insteadDataTypeWorkflow.Converter insteadsimulink-optimize-lookup-tables insteadmatlabConversionReport = DataTypeWorkflow.Single.convertToSingle(systemToConvert)
systemToConvert (char) — full block path of the loaded model or subsystem (e.g. 'myModel' or 'myModel/Controller').ConversionReport (struct) — compatibility check, converted items, and verification status (see field tables below).Worked example: openExample("fixedpoint/ConvertSystemToSinglePrecisionExample")
open_system(modelName), not load_system — the user must see the diagram before/after.save_system on your own — saving destroys the double-precision baseline and blocks meaningful re-runs. Leave the model dirty. This holds even when the user asks you to "make it stick," "persist it," or "do everything end-to-end" — that is not consent to auto-save. In that case, state plainly that you will not save the model yourself, explain that saving overwrites the double-precision baseline, and ask the user to confirm or run save_system themselves. Only persist after the user explicitly confirms saving specifically (not merely a general "do it all" request).convertToSingle; read its results from report.CheckInfo (it is not a separate call)..slx you happen to find in the working directory (an example or fixture file is not the user's intended model). Only run the conversion once the user has named the model.report.VerifyInfo.StowawayDblBlks afterward — remaining stowaway doubles mean the conversion is incomplete. Fix them at the source (retype locked-double blocks, set Stateflow data to single, or widen the SUD scope) and re-run convertToSingle. Do not recommend hand-inserting single(...) casts or Data Type Conversion blocks on the offending signals — that hides the double instead of eliminating it.report = ...;) — don't pollute the base workspace or echo the raw struct.The tool runs check → convert → verify, populating three sub-structs on the report.
| Field | Description | |-------|-------------| | ready | Logical — true if the system can be converted - only read ConvertInfo/VerifyInfo when this is true.| | err | Error info (empty on success) | | IncompatibleBlks | Cell array of DataTypeWorkflow.Single.Result — blocks not supporting single precision (see block-name note below) | | UnsupportedBlks | Cell array of DataTypeWorkflow.Single.Result — blocks unsupported by the conversion tool (with ErrorMsgs) | | DTLockedDblBlks | Blocks with locked double data types (do not block conversion) | | StowawayDblBlks | Blocks generating double operations found during the check | | TLSSettings | Models whose Target Language Standard was updated to C99 | | DTOSettings | Systems whose Data Type Override was reset | | SolverSettings | Models whose variable-step solver was changed to fixed-step | | configSettings | Config params updated (e.g. GenerateComments, ParameterPrecisionLossMsg) | | memoryUse.BeforeValue | Per-parameter memory table; column RuntimeMemory (bytes) before conversion |
How to extract block names from the diagnostic list. IncompatibleBlks, UnsupportedBlks, StowawayDblBlks, and DTLockedDblBlks are cell arrays of DataTypeWorkflow.Single.Result objects — not block-path strings. Get the readable block path from each element's ID via getDisplayName(). Do not call get_param, getfullname, or string() on the elements: that errors with "The first input to get_param must be of type 'double', 'char' or 'cell'.":
matlabfor k = 1:numel(report.CheckInfo.IncompatibleBlks) r = report.CheckInfo.IncompatibleBlks{k}; fprintf(' %s\n', r.ID.getDisplayName()); % e.g. 'myModel/Integrator' if ~isempty(r.ErrorMsgs) fprintf(' %s\n', strjoin(string(r.ErrorMsgs), '; ')); end end
Records what the converter actually did.
| Field | Description | |-------|-------------| | ready | Logical — true if the convert step ran cleanly | | err | Error info; empty ([]) on success | | results | Cell array of fxptds.BlockResult — the blocks/signals changed from double to single |
| Field | Description | |-------|-------------| | StowawayDblBlks | Blocks still generating double operations after conversion | | memoryUse.AfterValue | Per-parameter memory table; column RuntimeMemory (bytes) after conversion |
The check phase validates the Target Language Standard, Data Type Override, incompatible blocks, stowaway doubles, data-type-locked doubles, and solver settings — and auto-updates several of them. The tool handles TLS→C99, DTO cleanup, and solver changes automatically; you do not need to set these manually. See references/edge-cases.md for the full auto-update behavior, error identifiers, and edge cases:
Simulink:Commands:InvSimulinkObjectName); update-diagram failures (DataTypeWorkflow:Single:UpdateDiagramFailed)After convertToSingle returns, summarize the result for the user in plain language — do not dump the raw struct. Put the exact API call used at the top for traceability.
For the required output sections, empty-report fallback, reporting conventions, and the Embedded Coder readiness-check follow-up, see references/reporting-format.md.
Copyright 2026 The MathWorks, Inc.
Other measured skills in the registry, with their headline benchmark lift.