num to uint8 output, How to as=num, uint8 output
1 次查看(过去 30 天)
显示 更早的评论
>> 0x10
ans =
uint8
16
>> as=10;
>> 0xas <-This is an Error
How too make output uint8 16
Variable 'as' must be used!
采纳的回答
Steven Lord
2021-7-15
as = 10;
y = uint8(hex2dec(string(as)))
That 0x followed by hex digits syntax is for defining literals, much like you'd type:
q = 1e4
r = 3+4i
It cannot be used with variables.
0 个评论
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Entering Commands 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!