How to write ASCII characters corresponding to decimal numbers into a file?
6 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
I get some special symbols for large arrays and for small arrays I could write the characters.
2 Kommentare
Antworten (1)
Jan
am 15 Feb. 2023
This writes the character 'A' at the current file position:
n = 65;
fwrite(fid, n, 'char')
0 Kommentare
Siehe auch
Kategorien
Mehr zu Data Type Conversion finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!