fprint() to save uint8 in .txt file

13 ビュー (過去 30 日間)
benl23
benl23 2020 年 4 月 24 日
回答済み: Athul Prakash 2020 年 4 月 27 日
Hi all,
Thank you in advance for your help.
I've got a vector of uint8 numerica values ( from 0 to 255) that I would like to save in a .txt file.
I would need to have a .txt file in which each row is a single character. After having stored this .txt file in a SD card I would need to read it in Arduino whose file.read() function works reading one byte at a time.
I was thinking then that I would need to create a .txt file in which each row is the ASCII value correspondent to my uint8 number. Is there an easy way to do that using the fprint() function?
Do you have suggestions?
Thank you for your help!!

回答 (1 件)

Athul Prakash
Athul Prakash 2020 年 4 月 27 日
You may save it using the '%d' formatting operator and save it line by line to a text file. Use '\n' for moving to the next line.
Please see this doc and the examples in it to understand how to print your ascii values line by line.
In general, I have found the examples very useful in learning a new function or tool in matlab. Try picking out the first example in the doc.
Hope it Helps!

カテゴリ

Help Center および File ExchangeString Parsing についてさらに検索

タグ

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by