How to write ASCII characters corresponding to decimal numbers into a file?
6 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
I get some special symbols for large arrays and for small arrays I could write the characters.
Risposte (1)
Jan
il 15 Feb 2023
This writes the character 'A' at the current file position:
n = 65;
fwrite(fid, n, 'char')
0 Commenti
Vedere anche
Categorie
Scopri di più su Data Type Conversion in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!