I am trying to calculate the bandwidth of my current internet connection. I am pulling the current input and output transfer rate via snmp. If the argument to the following function is a sorted ascending list of the the some of each input and output sample, is this the right way to calculate 95th percentile?
sub ninetyFifth {
#Expects Sorted Data
my $ninetyFifthLine = (@_ * .95) - 1;
return $_[$ninetyFifthLine];
}
@_is the number of items in the list, and that if the index of the array is float it just truncates (rounds down), and as I write this I think I just realized I don't need the- 1... – Kyle Brandt♦ Mar 16 '10 at 11:57