in reply to Re^2: Math::BigFloat bnok() question
in thread Math::BigFloat bnok() question
Then you'll need to make $y a Math::BigInt object before you call methods on it:
$y = $cd_lookup{$codon}*$mfactor; $y = Math::BigInt->new( $y ); $z = $y->bnok($x);
|
|---|