How to read .log file and extract required data ?
조회 수: 54 (최근 30일)
이전 댓글 표시
I have a simulated file in .log format, how to read this file and extract data from a particular row/column ?
댓글 수: 0
답변 (1개)
KL
2017년 10월 15일
편집: KL
2017년 10월 15일
if the file has table like structure just use,
data = readtable('yourfilename.log')
if you don't want the output as table but an array, then
data = dlmread('yourfilename.log')
댓글 수: 1
Panagiotis Iliopoulos
2021년 12월 16일
편집: Panagiotis Iliopoulos
2021년 12월 16일
Neither works actually. it gives me as error:
data2=readtable(files{i,1})
The file extension '.log' is not recognized.
참고 항목
카테고리
Help Center 및 File Exchange에서 Text Files에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!