Filter löschen
Filter löschen

I want to add a column of numbers to a text file which already exists, how?

1 Ansicht (letzte 30 Tage)
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 Kommentare
Adam Danz
Adam Danz am 11 Jul. 2018
Here are responses to the same question. If there are any follow up questions I'd be glad to chip in.

Melden Sie sich an, um zu kommentieren.

Akzeptierte Antwort

dpb
dpb am 11 Jul. 2018
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.

Weitere Antworten (0)

Kategorien

Mehr zu Environment and Settings 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!

Translated by