Unreadable UTF characters when they are loaded in MATLAB R2022b, but they could be readable in R2020b
조회 수: 2 (최근 30일)
이전 댓글 표시
The table data are Chinese characters and saved in MAT-file by using MATLAB R2020b as attachment. In R2022b, MATLAB can load the table variable (db_Indicators), but the non-ASCII part of data in the table are unreadable.
Unzipped the attachment, and then running In MATLAB R2022b as following
load('database.mat','db_Indicators')
double(db_Indicators.UniNum{1})
It produces as
ans =
65533 49 46 49
In MATLAB R2020b, however,
It could be correctly displayed as
ans =
8470 49 46 49
Please help to correct the problem. Greatly thanks!
댓글 수: 1
Walter Roberson
2024년 11월 12일
On my Intel MacOS, R2024b, I get
237 49 46 49
Corresponding to string 'í1.1'
채택된 답변
Bruno Luong
2024년 11월 12일
편집: Bruno Luong
2024년 11월 12일
It sounds like it related to the bug fix they carried out in 2021b, see @Stefanie Schwarz answer here; This breaks the encioding/decofing compatibility before and after this release.
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Text Data Preparation에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!