How to read greek characters in a .txt file
Ältere Kommentare anzeigen
What is the command in order to read greek characters in a .txt file via matlab programming?
My file has 3 columns. The first one has names , the 2nd and 3rd have numbers.
Antworten (1)
Rik
am 10 Dez. 2020
0 Stimmen
You can get my readfile function from the FEX. If you are using R2017a or later, you can also get it through the AddOn-manager.
10 Kommentare
Ivan Mich
am 13 Dez. 2020
Walter Roberson
am 13 Dez. 2020
Can you attach the first couple of lines of your .txt file? Including enough to have some greek characters in the example.
I asked to "attach" rather than "post" in case there are special characters that might not be obvious from reading it on screen. For example, tabs.
Walter Roberson
am 13 Dez. 2020
Also please indicate which MATLAB release you are using, as there was a relatively recent change that makes a difference.
Rik
am 13 Dez. 2020
I'm currently not at a computer, so I can't run code on your file, but the input option 'Delimiter' does not exist for my function. That is why it isn't in the documentation.
Walter Roberson
am 13 Dez. 2020
That file is not three columns, it is 28 columns.
T = readtable('test.csv')
handles the sample with no problem
Ivan Mich
am 16 Dez. 2020
Rik
am 16 Dez. 2020
Your file does not contain any Greek characters. It is an ANSI-encoded file that does contain some special characters (like Ð), but no Greek symbols.
You can use readfile, but if you want to separate the lines along delimiters as well, you will have to parse each line separately (e.g. with the split function).
t=readfile('test.csv');
t=split(t,',');
Ivan Mich
am 16 Dez. 2020
Walter Roberson
am 16 Dez. 2020
Is it possible that you tried the split() twice ? It should not be able to give that error when the input is a character vector such as the result from readfile(), but it could give that error if the input is the result of a previous split()
Kategorien
Mehr zu Labels and Annotations finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!