how to make Ascii 7 bit in matlab
1 次查看(过去 30 天)
显示 更早的评论
i want to make ascii table to code the char
0 个评论
回答(1 个)
James Tursa
2020-5-8
编辑:James Tursa
2020-5-8
MATLAB uses ASCII for encoding characters. So you can just do this to get the characters:
ASCII = char(0:127);
3 个评论
James Tursa
2020-5-8
For the lower 128, this is just the ASCII table that OP wants ... at least I think that's what was asked. Not quite sure.
Walter Roberson
2020-5-8
I do not recall at the moment where I saw it, but a few weeks ago I encountered part of MATLAB that used UTF-32.
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Logical 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!