Combined 2 files .dat with different size
古いコメントを表示
hello i have 2 files .dat contains enum values but the size of the file one 4000x2 and the second 6000x2 i use "csvread" and "readmatrix" but doesn't work
Note (enum :enumeration)
can you help me pls
thanks
4 件のコメント
Voss
2024 年 8 月 29 日
Please add both files to a .zip archive, and then upload the .zip file here using the paperclip button.
younes
2024 年 8 月 29 日
Walter Roberson
2024 年 8 月 29 日
Perhaps something like
T1 = readtable('FirstFileNameGoesHere.dat', 'FileType', 'text');
T2 = readtable('SecondFileNameGoesHere.dat', 'FileType', 'text');
Combined = unique([T1; T2], 'rows');
採用された回答
その他の回答 (0 件)
カテゴリ
ヘルプ センター および File Exchange で MATLAB についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!