in reply to Re^3: Code Problem
in thread Code Problem

I calculated it before but here´s the darwin code for that
Freq := CreateArray(1..20,0): Tot := sum(sum(CountMatrix)): for i to 20 do Freq[i] := sum(CountMatrix[i])/Tot: od: print(Freq); [0.08477395, 0.05103334, 0.03837665, 0.05740129, 0.01256165, 0.0347174 +6, 0.06883297, 0.07907659, 0.02077239, 0.06813598, 0.08906677, 0.06501537 +, 0.02318017, 0.03823936, 0.04036729, 0.05668318, 0.05721648, 0.00871765 +, 0.02785317, 0.07797831] PercentageMutation := 100 * sum(Freq[i] * (1 - MutationMatrix[i,i]),i= +1..20); PercentageMutation := 44.5302
And the Mutationmatrix is the matrix i wrote in the Perl Code

Replies are listed 'Best First'.
Re^5: Code Problem
by BrowserUk (Patriarch) on Aug 10, 2013 at 13:45 UTC

    Same problem. Where does CountMatrix come from?


    With the rise and rise of 'Social' network sites: 'Computers are making people easier to use everyday'
    Examine what is said, not who speaks -- Silence betokens consent -- Love the truth but pardon error.
    "Science is about questioning the status quo. Questioning authority".
    In the absence of evidence, opinion is indistinguishable from prejudice.