Hi Leute,
wißt Ihr, warum Mathematica die Normalverteilung nicht als solche erkennt und dementsprechend als Text interpretiert und nicht als Formel und nix dabei herauskommt? Funktioniert das bei Euch oder wo liegt der Fehler?
ta = Table[Table[Random[], {12}], {10}]
nvta = Table[Sum[ta[[j]][[i]], {i, 1, 12}], {j, 1, 10}] - 6
<< Statistics`ContinuousDistributions`
ndist = NormalDistribution[0, 1]
ts = Sort[nvta]
f[x_] := Length [Select [ts, # < x &]]/Length[ts]
Plot[{f[x], CDF[NormalDistribution[0, 1], x]}, {x, -2, 2}]tn = CDF[ndist, ts[i]]
Max[Abs[tn - Table[x/10, {x, 1, 10}]]]
Das Ergebnis: beim Plot zeichnet er nur f[x] und gibt vorher ein paar Fehlermeldungen "lot::"plnr": "\!\(CDF[NormalDistribution[0, 1], x]\) is not a machine-size \
real number at x = -1.9999998333333333`." ab (erkennt es nicht als Formel) und der Rest funktioniert dann auch nicht mehr, dafür sind jetzt 4h draufgegangen :hewa: