how to make Ascii 7 bit in matlab
2 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
i want to make ascii table to code the char ![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/291312/image.jpeg)
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/291312/image.jpeg)
0 commentaires
Réponses (1)
James Tursa
le 8 Mai 2020
Modifié(e) : James Tursa
le 8 Mai 2020
MATLAB uses ASCII for encoding characters. So you can just do this to get the characters:
ASCII = char(0:127);
3 commentaires
James Tursa
le 8 Mai 2020
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
le 8 Mai 2020
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.
Voir également
Catégories
En savoir plus sur Logical dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!