ERROR : "Expected a value representable in the C type 'int'. Found 108301 instead."

11 次查看(过去 30 天)
I'm using MATLAB function blocks in Simulink. but there were some errors about data type. I can't understand the error messages. what made this error?
<<
>>
  6 个评论
Amir
Amir 2024-2-25
I have had the same problem in simulink recently. The error is due to indexing an array with a variable that isn't an intiger. For example, you may have used Tau_Plaus = tk(j+1) in one of your blocks where j is 1.00000. I would fix this problem by using tk(round(j+1)).

请先登录,再进行评论。

回答(1 个)

Andrew Sol
Andrew Sol 2019-5-1
You may try use block "Data Type Conversion", and convert input signal for MATLAB Fcn Block to uint8.

类别

Help CenterFile Exchange 中查找有关 Simulink 함수 的更多信息

产品

Community Treasure Hunt

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

Start Hunting!