importing text files via importdata
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
I have a task saying that I have to upload the two first columns in a text file using the importdata function? Anyone who knows how?
0 Kommentare
Antworten (1)
Athul Prakash
am 27 Sep. 2019
Try this: You may use the Import Data Tool to do it graphically. [Click: 'Home' Tab > 'Variable' section > 'Import Data' icon]. In the Import Tool, you may modify the selected area to just the first two columns. Please select the output type too, to Table/ColumnVectors... etc. For full functionality, refer to the doc below:
If you're writing a script to do this, have a look at importdata, textscan, fscanf and similar functions. You may search the documentation for the same.
Alternatively, you may read all columns using importdata and then select out only the first two after that:
myData = importdata('YouFileName.txt');
myData = myData([1 2], :);
0 Kommentare
Siehe auch
Kategorien
Mehr zu Large Files and Big Data finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!