cp readslice.R ts_readslice.R
[wrf-fire-matlab.git] / util1_jan / private / read_array_unf.m
blobe1b1227aef82b75ca469d9575fabe0963b8b9690
1 function a=read_array_unf(file)
2 % read array from fortran unformatted file
3 fid=ftopen(file);
4 if fid < 0, error('cannot open file'),end
5 m=read_rec(fid,1,'int');
6 if m~=1, error('bad file format type'),end
7 n=read_rec(fid,1,'int');
8 if n>3, error('only 3 dimensions supported'),end
9 nn=[1,1,1];
10 for i=1:n
11         nn(i)=read_rec(fid,1,'int');
12 end
13 fprintf(1,'reading dense matrix size %i %i %i from file %s\n',m,n,file)
14 a=zeros(nn);
15 for i3=1:nn(3)
16         for i2=1:nn(2)
17                 a(:,i2,i3)=read_rec(fid,nn(1),'double');
18         end
19 end
20 close(fid)
21 return