Single-byte characters?
13 ビュー (過去 30 日間)
古いコメントを表示
Hi!
If I understand correctly, characters in Matlab are always defined as two-byte variables? Is it possible to define a single-byte character?
I'm trying to communicate with an external device, and I need to send it a character string of N bytes = N characters. At the moment, however, when I define my string in Matlab I always get 2*N bytes.
Is it possible to create strings of characters where each character is stored as one byte?
Thanks!
0 件のコメント
回答 (4 件)
Patrick Kalita
2011 年 5 月 24 日
Does this work for you?
>> s = uint8('hello world')
s =
104 101 108 108 111 32 119 111 114 108 100
>> whos
Name Size Bytes Class Attributes
s 1x11 11 uint8
>>
1 件のコメント
Jan
2011 年 5 月 24 日
If the function expects a CHAR, you must provide 2-byte characters. 1-byte characters are simply not CHARs and will be refused by the called function.
Please post any details about the program used for "communication with an external device".
0 件のコメント
Lipa
2011 年 5 月 24 日
1 件のコメント
Patrick Kalita
2011 年 5 月 24 日
Which function is giving you the error? Is it something provided by MATLAB or a Toolbox?
Laura Proctor
2011 年 5 月 24 日
You can try the function unicode2native which will convert your characters into numeric bytes depending on the encoding scheme that you select:
bytes = unicode2native('hello world','UTF-8')
But I don't know that this will resolve the issue. Can you copy and paste the exact command you are using as well as the error message?
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で MATLAB Compiler についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!