in reply to Re: Problem with Statistics::Burst
in thread Problem with Statistics::Burst
use strict; use Statistics::Burst; my $burstObj=Statistics::Burst::new(); $burstObj->generateStates(3,.111,2); $burstObj->gamma(.5); my @gap_space = (5,5,10); $burstObj->setData(\@gap_space); $burstObj->process(); my $statesUsed=$burstObj->getStatesUsed();
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Problem with Statistics::Burst
by rhesa (Vicar) on Feb 26, 2007 at 15:22 UTC |