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!