매트랩 txt 파일 읽어오기
21 ビュー (過去 30 日間)
古いコメントを表示
採用された回答
JWH
2024 年 11 月 21 日 9:05
위의 링크를 참고해서 할경우 아래와 같이 될것 같습니다.
t1 = readtable('test.txt', 'ReadVariableNames', false);
t1.Properties.VariableNames{1} = 'Date';
t1.Date.Format = 'yyyy-MM-dd HH:mm:ss';
t1.Properties.VariableNames{3} = 'Num';
t2 = table(t1.Date, t1.Num);
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で 빅 데이터 처리 についてさらに検索
製品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!