matlab.System.showFiSettingsImpl - Fixed point data type tab visibility for System objects - MATLAB (original) (raw)

Main Content

Fixed point data type tab visibility for System objects

Syntax

flag = showFiSettingsImpl

Description

[flag](#bu444oz-1-flag) = showFiSettingsImpl specifies whether the Data Types tab appears on the MATLAB® System block dialog box. The Data Types tab includes parameters to control processing of fixed point data the MATLAB System block. You cannot specify which parameters appear on the tab. If you implement showFiSettingsImpl, the simulation mode is set to code generation.

The parameters that appear on the Data Types tab, which cannot be customized, are:

Method Authoring Tips

Output Arguments

expand all

flag — Display Data Types tab

false (default) | true

Flag indicating whether to display the Data Types tab on the MATLAB System block mask, returned as a logical scalar value. Returning atrue value displays the tab. A false value does not display the tab.

Examples

expand all

Show the Data Types Tab

Show the Data Types tab on the MATLAB System block dialog box.

methods (Static, Access = protected) function isVisible = showFiSettingsImpl isVisible = true; end end

If you set the flag, isVisible, to true, the tab appears as follows when you add the object to Simulink® with the MATLAB System block.

Version History

Introduced in R2016a

See Also