필터 지우기
필터 지우기

Read data form file

조회 수: 3 (최근 30일)
Berbia
Berbia 2013년 1월 10일
I'm trying to read values from the file and store it as a matrix.In the file there is two line space between each matrix values, and each should store as separate matrix. suppose my file has the content,
File vector.mat
1.1 2.2 3.3 4.4 5.5
2.2 3.3 4.4 5.5 6.6
3.3 4.4 5.5 6.6 7.7
6.6 7.7 8.8 9.9 9.9
7.7 8.8 9.9 1.1 2.2
8.8 9.9 1.1 2.2 3.3
I want to read these values and stored as two matrix
A= [1.1 2.2 3.3 4.4 5.5
2.2 3.3 4.4 5.5 6.6
3.3 4.4 5.5 6.6 7.7]
and
B= [6.6 7.7 8.8 9.9 9.9
7.7 8.8 9.9 1.1 2.2
8.8 9.9 1.1 2.2 3.3]
Can any one give idea to implement this in matlab? Thanks in advance.....
  댓글 수: 2
per isakson
per isakson 2013년 1월 10일
... two line space between ... is that two empty lines (or lines with only space)?
Do all "matrices" have the same number of columns?
Berbia
Berbia 2013년 1월 10일
Two empty lines between each matrix and all matrices have same number of columns but number of rows vary.

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

채택된 답변

per isakson
per isakson 2013년 1월 10일
편집: per isakson 2013년 1월 10일
See TEXTSCAN Reading After a specified term(or a row) and writing matrix. That includes the solution (including code) to a similar problem.
The basic approach is
  1. read the complete file and store each row as one string
  2. find the positions of the empty rows and calculate the size of the blocks
  3. read the file a second time with the proper format specifier
fid = fopen(...)
loop over all blocks
fgetl( ) % read the empty lines
cac = textscan( format, block_size, ... );
end
Do not worry about the time it takes to read the file a second time. If it is not huge it is red from the cache the second time.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Text Files에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by