Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

How to calculate standard deviation from the delay?

Status
Not open for further replies.

nateduong

Newbie level 3
Joined
Jan 4, 2017
Messages
3
Helped
0
Reputation
0
Reaction score
0
Trophy points
1
Activity points
66
hi guys,

I am trying to calculate the unit vector and standard deviation of the signal. I hope everyone can give me ideas.

Here is my scenario:

I have 2 rx channels: - f is channel 1 with the length 1x256 complex, then FFT. - g is channel 2 with the length 1x256 complex, then FFT. - from f and g, I can calculate the spectrum density S_fg = f * conj(g), with the length 1x256 complex

Code:
S_fg  = f * conj(g)
t_0   = 1 / f_0;
r_0   = t_0 / (2 * pi);
delay = angle(S_fg) * r_0 * 1e12; % in pico second
d     = median(delay);

since I have those parameters, How can i calculate the unit vector (x,y), and standard deviation?

The unit vector maybe calculated by the equation:
Code:
x = 1*cos(delay); % 1x256 
y = 1*sin(delay);  % 1x256

but I do not know how to get the standard deviation?

Hope anyone can help?
 

Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top