How to load data from and .txt file?
17 次查看(过去 30 天)
显示 更早的评论
Hi All,
Ive been trying to load data from the .txt file that I've attached. What I've got so far is:
Spill = importdata('Spill.txt');
T = Spill(:,1);
C = Spill(:,2);
but I get an error "Index exceeds Matrix Dimensions". Can some please help me out. I can't change to ".data" file either as I have to extract the columns of data directly out of the .txt file. Much appreciated in advance.
0 个评论
回答(2 个)
J. Webster
2016-4-15
编辑:J. Webster
2016-4-15
To read a tab delimited ascii file while skipping the first row, try:
data = dlmread('Spill.txt','\t',1,0);
2 个评论
Walter Roberson
2016-4-15
It depends on that MATLAB release you are using. Text anywhere in a file is not supported in R2014b or earlier, and possibly not in R2015a either (we have not gone back to figure out exactly when the change was made.)
Walter Roberson
2016-4-15
fid = fopen('Spill.txt', 'rt');
data = cell2mat( textscan(fid, '%f%f', 'Delimiter', '\t', 'HeaderLines', 1) );
fclose(fid)
parham kianian
2020-9-2
I think it is much easier to use textread function. Following link describe in full detail how to use this function to import data from a text file:
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Data Import and Export 的更多信息
产品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!