I want to add a column of numbers to a text file which already exists, how?
2 次查看(过去 30 天)
显示 更早的评论
I have a file with columns headers years, emissions and I want to add 'land'. The years run from 1750-2014. For the years 1959-2014 I want to add to this 'land column' a set of values. How do I do this without ruining or having to recreate the rest of the file?
3 个评论
Adam Danz
2018-7-11
Here are responses to the same question. If there are any follow up questions I'd be glad to chip in.
采纳的回答
dpb
2018-7-11
Short answer is to just create the file anew...
t=readtable('yourfile'); % or whatever way to read; readtable is pretty flexible
land=nan(height(t,1)); % allocate for the new data column
ix=(t.years==1750); % find where to put data in array
land(ix:end)=NEWLANDDATA; % store the new values from wherever they come
t=[t land]; % augment the table
Save the file in whatever form you wish.
While it seems superficially to be better to only write new data, the effort to do so with sequential files is much more than simply reading the existing file, doing whatever machinations needed to the data in memory and then rewriting the file. While the other is possible for everything except truly humongous files it's not worth the effort.
0 个评论
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Standard File Formats 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!