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.
14 lines
172 B
Matlab
14 lines
172 B
Matlab
11 years ago
|
function [ eps fs] = epsilon( x )
|
||
|
|
||
|
xf=reshape(x,19200,[]);
|
||
|
|
||
|
[m n]=size(xf);
|
||
|
eps=zeros(n,1);
|
||
|
fs=zeros(n,1);
|
||
|
|
||
|
for i=1:n
|
||
|
[fs(i) eps(i)]=find_pss(xf(:,i),0,false);
|
||
|
end
|
||
|
|
||
|
|
||
|
end
|