import multi type data in MATLAB
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
How I can import a text file in MATLAB including 256 columns: first column is string and other columns are numeric data.
0 Commenti
Risposta accettata
Gerd
il 29 Giu 2011
Hi Sarah,
depending on your specific file you can use
fid= fopen('File.txt');
textscan(fid,'%s%f.....');
fclose(fid);
Gerd
6 Commenti
Jan
il 29 Giu 2011
Data = textscan(fid,['%s' repmat('%f',1,255)]);
Then Data is a cell, which contains the different columns as elements. See "help textscan".
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Large Files and Big Data in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!