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.
8 lines
102 B
Matlab
8 lines
102 B
Matlab
9 years ago
|
function fs = find_pss_ac( x)
|
||
|
|
||
|
w2=xcorr(x,x);
|
||
|
[m, fs]=max(abs(w2));
|
||
|
fs=fs-1920;
|
||
|
end
|
||
|
|