필터 지우기
필터 지우기

How can I read a text file as fixed width columns?

조회 수: 5 (최근 30일)
MAHMOUD ALZIOUD
MAHMOUD ALZIOUD 2017년 8월 30일
댓글: MAHMOUD ALZIOUD 2017년 8월 31일
Hello,
I have a traffic cards with information about traffic every 15 minutes, over one year I will have 2500 rows in every card. each row must be divided into 25 columns with a fixed width as shown in the next line.
Column widths: 1 2 6 1 1 2 2 2 2 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 how can I do this in matlab please?
  댓글 수: 1
Jan
Jan 2017년 8월 30일
What is a traffic card? What exactly is your input. Text files?

댓글을 달려면 로그인하십시오.

채택된 답변

dpb
dpb 2017년 8월 31일
편집: dpb 2017년 8월 31일
cw=[1 2 6 1 1 2 2 2 2 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5];
fmt=sprintf('%%%dd',cw);
% file open preamble code here for opening file, return valid fid
data=cell2mat(textscan(fid,fmt,'collectoutput',1));
Above presumes all are integer fields, if data does include floating point values fix up format fields to match.
PS: Do not use user ids for tags in future...

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Migrate GUIDE Apps에 대해 자세히 알아보기

태그

아직 태그를 입력하지 않았습니다.

Community Treasure Hunt

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

Start Hunting!

Translated by