Matlab coder error, help please
显示 更早的评论
The initial value specified for global variable XXX is not contained by the global variable's type
I have defined the variable right after. Any idea?
Thanks.
回答(1 个)
Walter Roberson
2016-10-12
0 个投票
You tried to initialize a global variable to a value that cannot be represented by the datatype of that variable. For example you might have defined the variable as int8 but tried to initialize it to 255 (which would fit in uint8 but not in int8)
类别
在 帮助中心 和 File Exchange 中查找有关 Logical 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!