which encoding should i used with fopen in matlab
10 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
the instruction :
fullpathr = strcat (exp_subfolder,tmf_file)
fidr = fopen(fullpathr,r,'ieee-le','UCS-2')
i want to open and read a file in matlab but always it return -1 and warning "the encoding UTF-16 is not supported"
please can any one help me in this
1 Kommentar
Walter Roberson
am 17 Jun. 2025
This is because MATLAB only officially supports UTF-8 encoding with 'fopen'.
Not exactly. MATLAB supports a long list of encodings, mostly ISO. However, it does not officially support UTF-16
Antworten (1)
Saurabh
am 18 Jun. 2025
I understand you are encountering an issue opening a UCS‑2 (or UTF‑16) encoded file in MATLAB. This is because MATLAB only officially supports UTF-8 encoding with 'fopen'. While encodings like UCS-2, UTF-16LE are not officially supported.
To workaround this limitation:
Read raw bytes and Decode explicitly.
fid = fopen(fullpathr, 'rb');
fread(fid, 2, '*uint8'); % Skip BOM
bytes = fread(fid, 'uint8=>uint8')';
fclose(fid);
str = native2unicode(bytes, 'UTF-16LE');
data = textscan(str, '%s %f %f', 'Delimiter', ',', 'HeaderLines', 1);
This method reads raw bytes, manually decodes them using native2unicode, and then parses the resulting string.
- 'native2unicode' converts byte arrays to MATLAB character arrays based on the specified encoding (UTF-16LE, UTF-8, etc.)
- This approach handles files with 16-bit encoding reliably, avoiding issues from fopen’s limited encoding support .
To know more about 'native2unicode' refer to the following official MathWorks documentation:
I hope this helps in resolving your query.
0 Kommentare
Siehe auch
Kategorien
Mehr zu Get Started with MATLAB 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!