Importing text file containing numbers and words

2 visualizzazioni (ultimi 30 giorni)
I want to import a text file into MATLAB. I want MATLAB to ignore the first 3 lines, detect the 4th line as header, and identify data from the 6th row on. How can it be done?
filename
date
var1 var2 var3
abc1 100 abc1
abc2 200 abc2
  2 Commenti
dpb
dpb il 28 Dic 2022
See @doc:readtable with optional named parameters and detectImportOptions

Accedi per commentare.

Risposta accettata

Jan Studnicka
Jan Studnicka il 28 Dic 2022
data = readtable('soubor.txt','NumHeaderLines',3,'ReadVariableNames',true)

Più risposte (0)

Categorie

Scopri di più su Data Import and Export in Help Center e File Exchange

Prodotti

Community Treasure Hunt

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

Start Hunting!

Translated by