forked from nputs/Gannet2.0_nicksversion
-
Notifications
You must be signed in to change notification settings - Fork 1
/
freadVAXG.m
executable file
·40 lines (33 loc) · 1.19 KB
/
freadVAXG.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
function numVax = freadVAXG(fid, number, method)
% FREADVAXG Converts a number read in IEEE-LE format to its VAXG
% floating point representation.
%
% Usage:
% fid = fopen('file.vaxg', 'r', 'ieee-le');
% num = freadVAXG(fid, numElements, 'format')
%
% 'format' options are the same as FREAD.
%
% The function is intended to be called by the user.
%
% See also UINT32LE_TO_VAXF, UINT64LE_TO_VAXG, FREADVAXD
% Copyright 2009 The MathWorks, Inc.
switch method
case {'float32', 'single'}
rawUINT32 = fread(fid,number,'uint32=>uint32');
numVax = uint32le_to_VAXF( rawUINT32 );
case {'float64', 'double'}
rawUINT32 = fread(fid,2*number,'uint32=>uint32');%read 2 32bit numbers
numVax = uint64le_to_VAXG(rawUINT32);
case {'float'}
if intmax == 2147483647 %32bit OS float is 32 bits
rawUINT32 = fread(fid, number,'uint32=>uint32');
numVax = uint32le_to_VAXF(rawUINT32);
else
rawUINT32 = fread(fid,2*number,'uint32=>uint32');%read 2 32bit numbers
numVax = uint64le_to_VAXG(rawUINT32);
end
otherwise
numVax = fread(fid, number, method);
end
end