How to read txt file and put the words on a vector and the numbers in a matrix?

3 Ansichten (letzte 30 Tage)
Hi
how do i extract the words and the numbers and put them in a vector(for words) and matrix(for numbers) with this txt file in this format:
Salmorrete, Vila Ló, Pião, Tortolindo, Chão de Frades
0 104 97 33 205
0 0 46 57 410
0 0 0 154 73
0 0 0 0 322
0 0 0 0 0
  1 Kommentar
dpb
dpb am 10 Okt. 2023
See general use of the new(ish) string class example <word frequency example> for ideas on how to get started.
Post back when/if you get stuck somewhere...

Melden Sie sich an, um zu kommentieren.

Akzeptierte Antwort

Star Strider
Star Strider am 10 Okt. 2023
If that is the exact file, readtable is going to have problems with it.
Using fgetl and textscan
type('Alexandre_2023_10_10.txt')
Salmorrete, Vila Ló, Pião, Tortolindo, Chão de Frades 0 104 97 33 205 0 0 46 57 410 0 0 0 154 73 0 0 0 0 322 0 0 0 0 0
fidi = fopen('Alexandre_2023_10_10.txt','rt');
VN = fgetl(fidi)
VN = 'Salmorrete, Vila Ló, Pião, Tortolindo, Chão de Frades'
C = textscan(fidi, '%f%f%f%f%f', 'CollectOutput',1);
Matrix = cell2mat(C)
Matrix = 5×5
0 104 97 33 205 0 0 46 57 410 0 0 0 154 73 0 0 0 0 322 0 0 0 0 0
fclose(fidi);
.

Weitere Antworten (0)

Kategorien

Mehr zu Text Data Preparation finden Sie in Help Center und File Exchange

Produkte


Version

R2023b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by