reading a huge matrix which is split to several parts

1 次查看(过去 30 天)
Dear all,
is there a simple way in MATLAB to read a matrix from a text file, when the matrix is too wide to span the linewidth and is therefore split to consecutive parts? An example file is attached.
I will be thankful for any advices.
Jan

采纳的回答

per isakson
per isakson 2020-8-22
编辑:per isakson 2020-8-22
The text file contains column and row numbers together with blocks of the matrix. These row and column numbers can be used for checks and to find the number of columns of each block. In my script below, I assume that all the blocks contains four columns. And there is no error checking in my script.
%%
chr = fileread('matrixsample.txt');
chr = strrep( chr, char(13), '' ); % simpler without carrige return
str = string( chr );
%%
[ blocks, matches ] = strsplit( str, '(?m)^[\d\x20]+$' ...
, 'DelimiterType','RegularExpression' );
blocks(1) = []; % first line is a delimiter
%%
cac = cell( 1, numel(blocks) );
for bb = 1 : numel(blocks)
cac(bb) = textscan( blocks(bb), '%*d%f%f%f%f', 'CollectOutput',true );
end
num = cell2mat( cac );
The result is in num
>> whos num
Name Size Bytes Class Attributes
num 8x8 512 double

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Data Type Conversion 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by