Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl: the Markov chain saw
 
PerlMonks  

Re^11: Algorithm for cancelling common factors between two lists of multiplicands

by tmoertel (Chaplain)
on Aug 09, 2005 at 02:02 UTC ( [id://482096]=note: print w/replies, xml ) Need Help??


in reply to Re^10: Algorithm for cancelling common factors between two lists of multiplicands
in thread Algorithm for cancelling common factors between two lists of multiplicands

You entered a 4x1 matrix, and so that's why you got an answer of 1. (The code works on general matricies and does not assume the 2x2 case.) Enter the data as a 2x2 matrix to get the result you expect:
$ ./fet 989 9400 43400 2400 ^D ... tons of output ...

Cheers,
Tom

Replies are listed 'Best First'.
Re^12: Algorithm for cancelling common factors between two lists of multiplicands
by BrowserUk (Patriarch) on Aug 09, 2005 at 02:04 UTC

    How do I get that output reduced to a real in scientific format?


    Examine what is said, not who speaks -- Silence betokens consent -- Love the truth but pardon error.
    Lingua non convalesco, consenesco et abolesco. -- Rule 1 has a caveat! -- Who broke the cabal?
    "Science is about questioning the status quo. Questioning authority".
    The "good enough" maybe good enough for the now, and perfection maybe unobtainable, but that should not preclude us from striving for perfection, when time, circumstance or desire allow.
      How do I get that output reduced to a real in scientific format?
      If you want arbitrary precision, the safest bet is to extract the digits yourself:
      module ScientificFormat (sciformat) where import Ratio -- return prec+1 digits because I don't round sciformat prec r = sign ++ digits ++ "e" ++ show exp where (ds, exp) = tosci (abs numer) (denominator r) 0 numer = numerator r sign = if signum numer < 0 then "-" else "+" digits = show (head ds') ++ "." ++ concatMap show (tail ds') ds' = take (prec+1) (ds ++ repeat 0) tosci 0 _ _ = ([0], 0) tosci numer denom exp = case numer `div` denom of 0 -> tosci (10 * numer) denom (exp-1) x | x >= 10 -> tosci numer (10*denom) (exp+1) _ -> (digits numer denom, exp) digits n d = let (q,r) = n `quotRem` d in q : digits (10*r) d
      And:
      module Main (main) where import FishersExactTest import ScientificFormat main = interact $ sciformat 60 . pCutoff . map (map read . words) . li +nes
      Example:
      [thor@arinmir fishers-exact-test]$ time ./fet < ex1.dat +8.070604647867604097576877675243109941729476950993498765160880e-7030 real 0m0.839s user 0m0.819s sys 0m0.016s

      Cheers,
      Tom

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://482096]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others romping around the Monastery: (9)
As of 2024-03-28 10:17 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found