why do I receive error like"The input must be a built-in integer or fixed-point data type"

4 次查看(过去 30 天)

回答(2 个)

Sathvik
Sathvik 2023-11-27
Hi
I understand that you are trying to resolve the error while using the NCO block in your Simulink model.
The error you have received suggests that the output data type of the Gain block in your Simulink model is a ‘double’ while the NCO Block expects a ‘built-in’ integer or ‘fixed-point’ data type.
The data types supported for the input to the NCO block are:
int8 | int16 | int32 | int64 | uint8 | uint16 | uint32 | uint64 | fixed point
You can use information overlays in your model to ensure that you are providing an integer input to the NCO block.
In the Simulink Editor, go to Debug -> Information Overlays -> Ports -> Base Data Types, to identify the output data type of the source block and change the output data type of the source block in your Simulink Model from ‘double’ to one of the supported data types.
Please refer to the following documentation for the NCO Block for more information regarding the input port to the NCO Block
Hope this helps!
  4 个评论
Sathvik
Sathvik 2023-11-29
As I can see from the screenshot attached, you are getting a different error from what you have received earlier.
The error message is asking you to specify the 'Output Minimum' and 'Output Maximum' for the Gain block. To do this, open the block dialog, select the 'Signal Attributes' tab, and specify the minimum and maximum values that the output signal will likely use.
The system is attempting to provide reccomended data types based on the range on the signals and will need the specifications above.

请先登录,再进行评论。


Walter Roberson
Walter Roberson 2023-11-28
Put in a type conversion block https://www.mathworks.com/help/simulink/slref/datatypeconversion.html

类别

Help CenterFile Exchange 中查找有关 Data Types 的更多信息

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by