Poissonverteilung < Matlab < Mathe-Software < Mathe < Vorhilfe
|
Status: |
(Frage) überfällig | Datum: | 10:37 Mi 04.06.2008 | Autor: | AnnaB |
Aufgabe | Wie kann ich in Matlab eine poissonverteilte Zufallsvariable simulieren? |
Vielen Dank für Eure Hilfe!
|
|
|
|
Status: |
(Mitteilung) Reaktion unnötig | Datum: | 11:20 Fr 06.06.2008 | Autor: | matux |
$MATUXTEXT(ueberfaellige_frage)
|
|
|
|
|
Status: |
(Mitteilung) Reaktion unnötig | Datum: | 14:02 Sa 07.06.2008 | Autor: | AnnaB |
Inzwischen habe ich eine Lösung.
Poissonverteilung mit Parameter lambda:
for i=1:n;
x=rand();
y=exp(-lambda);
z=exp(-lambda);
k=0;
while y<x
k=k+1;
z=z*lambda/k;
y=y+z;
end
end
|
|
|
|