ERROR : "Expected a value representable in the C type 'int'. Found 108301 instead."
32 ビュー (過去 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?
<<
>>
5 件のコメント
Michal Semonský
2020 年 7 月 4 日
Hi, Peter S,
the error could be in your variable ind data type - this should be set as integer type by using functions like ind=uint8(ind), uint16(), uint32(), ...depends on the maximal value which ind could be (for uint16 it is 65535). Variable AT-OnCmd seems like a matrix and the indexing variable should be always integer non-negative type.
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
2019 年 5 月 1 日
You may try use block "Data Type Conversion", and convert input signal for MATLAB Fcn Block to uint8.
0 件のコメント
参考
製品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!