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
438 B
Matlab
15 lines
438 B
Matlab
function [w2, m, idx] = find_pss2( x, N_id_2, fft_size)
|
|
c=lte_pss_zc(N_id_2);
|
|
cc=[zeros(fft_size/2-31,1); c; zeros(fft_size/2-31,1)];
|
|
ccd=[0; cc(fft_size/2+1:fft_size); cc(2:fft_size/2)];
|
|
ccf=sqrt(fft_size)*conj(ifft(ccd));
|
|
|
|
w2=abs(conv(x,ccf/62)).^2/var(x,1)/sqrt(2);
|
|
plot(w2)
|
|
[m, idx]=max(w2);
|
|
|
|
%fprintf('Frame starts at %d, energy=%g, p=%g, p/en=%g dB\n',i, ...
|
|
% en, m, m/en);
|
|
end
|
|
|