mirror of https://github.com/pvnis/srsRAN_4G.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
321 B
Matlab
15 lines
321 B
Matlab
9 years ago
|
function [ out ] = write_int16( filename, x)
|
||
|
%READ_COMPLEX Summary of this function goes here
|
||
|
% Detailed explanation goes here
|
||
|
|
||
|
[tidin msg]=fopen(filename,'w');
|
||
|
if (tidin==-1)
|
||
|
fprintf('error opening %s: %s\n',filename, msg);
|
||
|
out=[];
|
||
|
return
|
||
|
end
|
||
|
|
||
|
fwrite(tidin,x,'int16');
|
||
|
end
|
||
|
|