mirror of https://github.com/pvnis/srsRAN_4G.git
Added SIMD turbo rate recovery
parent
88cd40420a
commit
9e685eca32
@ -0,0 +1,14 @@
|
||||
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
|
||||
|
@ -0,0 +1,14 @@
|
||||
function [ out ] = write_complex( 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,'single');
|
||||
end
|
||||
|
@ -0,0 +1,14 @@
|
||||
function [ out ] = write_uchar( 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,'uint8');
|
||||
end
|
||||
|
Loading…
Reference in New Issue