매트랩 txt 파일 읽어오기

21 views (last 30 days)
재성
재성 on 21 Nov 2024 at 7:55
Commented: 재성 about 24 hours ago
이런 형태의 파일을 읽어와 조화분석을 시도하려고 했는데, 파일을 읽어올 때 구분자를 어떻게 사용해야
이런식으로 데이터를 받아와 사용할 수 있는지 궁금합니다. 참고할만한 방법을 알려주시면 감사할 것 같습니다..

Accepted Answer

JWH
JWH on 21 Nov 2024 at 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);
  1 Comment
재성
재성 about 23 hours ago
이 방법으로 해결하진 않았지만 해결에 도움이 됐습니다!! 감사합니다!

Sign in to comment.

More Answers (0)

Tags

Products

Community Treasure Hunt

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

Start Hunting!