blob: 012b9dd782c95697aa6d20fc748ce558a7d94c5c (
plain)
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
|
%
% Copyright 2001 Free Software Foundation, Inc.
%
% This file is part of GNU Radio
%
% SPDX-License-Identifier: GPL-3.0-or-later
%
%
function v = write_complex_binary (data, filename)
%% usage: write_complex_binary (data, filename)
%%
%% open filename and write data to it
%% Format is interleaved float IQ e.g. each
%% I,Q 32-bit float IQIQIQ....
%% This is compatible with read_complex_binary()
%%
m = nargchk (2,2,nargin);
if (m)
usage (m);
end
f = fopen (filename, 'wb');
if (f < 0)
v = 0;
else
re = real(data);
im = imag(data);
re = re(:)';
im = im(:)';
y = [re;im];
y = y(:);
v = fwrite (f, y, 'float');
fclose (f);
end
end
|