複数のtableデータの結合

14 views (last 30 days)
masatake
masatake on 6 Jul 2022
Commented: masatake on 6 Jul 2022
複数のcsvファイルを結合する際に
事前割り当ての警告を回避するコードの書き方があれば教えていただきたいです
(あらかじめ全ファイルの総行数を把握する方法等)
行数は同一ではないものとしています
よろしくお願いします
fn=dir('*.csv')
l=length(fn)
T=[]
for i=1:l
Tn = readtable(fn(l).name);
T=[T ;Tn]%事前割り当てがないため警告
end

Accepted Answer

Hernia Baby
Hernia Baby on 6 Jul 2022
データストアで読み込み、tall配列を使用してはいかがでしょうか?
  2 Comments
Hernia Baby
Hernia Baby on 6 Jul 2022
データ ストア入門はこちらです。
masatake
masatake on 6 Jul 2022
回答ありがとうございます
tall配列。。初めて知りました
記述もすっきりしました、ありがとうございます

Sign in to comment.

More Answers (0)

Categories

Find more on 大きなファイルとビッグ データ in Help Center and File Exchange

Products

Community Treasure Hunt

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

Start Hunting!