Importing data from txt file

2 次查看(过去 30 天)
Iason
Iason 2014-6-5
Hello I have a text file: attached
I would like to take the numerical values of the first and second column and put them in matrices T and A respectively.

回答(1 个)

Image Analyst
Image Analyst 2014-6-6
t = readtable('chichi_triplos_katagrafh.txt');
or use dlmread();
  2 个评论
Image Analyst
Image Analyst 2014-6-6
lason's "Answer" moved here:
none of them is working
Image Analyst
Image Analyst 2014-6-6
readtable is only there after R2013b. Try importdata
M = importdata(filename, '\t', 1)

请先登录,再进行评论。

标签

Community Treasure Hunt

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

Start Hunting!

Translated by