importing text files via importdata

2 ビュー (過去 30 日間)
Philip Cung Van Ni Thangngat
Philip Cung Van Ni Thangngat 2019 年 9 月 24 日
回答済み: Athul Prakash 2019 年 9 月 27 日
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?

回答 (1 件)

Athul Prakash
Athul Prakash 2019 年 9 月 27 日
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], :);

カテゴリ

Help Center および File ExchangeData Import and Export についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by