North American Network Operators Group

Date Prev | Date Next | Date Index | Thread Index | Author Index | Historical

Re: Calculating Jitter

  • From: Fred Baker
  • Date: Fri Jun 10 12:59:36 2005
  • Iim-sig: v:"1.1"; h:"imail.cisco.com"; d:"cisco.com"; z:"home"; m:"krs";t:"1118421881.724973"; x:"432200"; a:"rsa-sha1"; b:"nofws:918";e:"Iw=="; n:"sQYarK2E51MdcTiUqeif3F7cWdxIfoCiXhdfb9vD5ee/j0jXL15gbFxF2p""XIweAblu0N6XAgK7k+wrbr7bQDJaCDqOmzqpRUBjIRQAXQ7NzadpmR3pUL6wxaRUtW+c43sl9jC""50Qg1sXHpPjt8Y+Y16ioyQAQAdSunM4YhevURc=";s:"Ktxa3a7h+UL6trKiKXELfIiTPwr8ufzE6MpzdqriQ0CkA9oGMobwkWdqGKwDvQ3zz9KfcEMc""bMeikLhCBts4fTf5y29krOJqmVyfeLSREn11ziAFFScofzMTRui1LMS5dCCfYeVJ66zC8ejWtGd""Gj/0A5IfeA6v7j7BEboXKRyk=";c:"From: Fred Baker <[email protected]>";c:"Subject: Re: Calculating Jitter";c:"Date: Fri, 10 Jun 2005 09:56:38 -0700"
  • Iim-verify: s:"y"; v:"y"; r:"60"; h:"imail.cisco.com";c:"message from imail.cisco.com verified; "


you saw marshall's comment. If you're interested in a moving average, he's pretty close.

If I understood your question, though, you simply wanted to quantify the jitter in a set of samples. I should think there are two obvious definitions there.

A statistician would look, I should think, at the variance of the set. Reaching for my CRC book of standard math formulae and tables, it defines the variance as the square of the standard deviation of the set, which is to say

sum of ((x(i) - xmean)^2)
------------------------
n - 1

where the n values x(i) are the members of the set, xmean is the mean of those values, and n is the number of x(i).

A sample set with a larger standard deviation or variance than another set has contains more jitter.

In this context, the other thought that comes to mind is the variation from nominal. If the speed-of-light delay between here and there is M, the jitter might be defined as the root-mean-square difference from M, which would be something like

sum of ((x(i) - xmin)^2)
-----------------------
n - 1

with the same variables except that xmin is the least value in the set.