File:NormalVert2d.png
Summary
| Description |
Deutsch: Dichte einer zweidimensionalen normalverteilten Zufallsgröße
R-Quelltext: normalDensity2d<-function(mu1=0,mu2=0,sigma1=1,sigma2=1,rho=0,x=seq(from=-1,to=+1,length=10),y=seq(from=-1,to=+1,length=10)) { z=matrix(nrow=length(x),ncol=length(y)) zx=0 zy=0 for (x1 in x) { zx=zx+1 for (x2 in y) { zy=zy+1 z[zx,zy]=1/(2*pi*sigma1*sigma2*sqrt(1-rho^2))*exp(-1/(2*(1-rho^2))*(((x1-mu1)/sigma1)^2-2*rho*(x1-mu1)/sigma1*(x2-mu2)/sigma2+((x2-mu2)/sigma2)^2)) } zy=0 } return(z) } x=seq(from=-2,to=+2.5,length=30) y=seq(from=-2,to=+2.5,length=30) png(filename = "NormalVert2d.png", width=1600, height=1200, pointsize = 12) par(bg="lightgrey") persp(x=x,y=y,z=normalDensity2d(x=x,y=y), theta = 30, phi = 20, expand = 0.75, r=4, col = "red", ltheta = 120, shade = 0.75, ticktype = "detailed", xlab = "", ylab = "", zlab = "") title(main="Die zweidimensionale Normalverteilung",cex.main = 2) dev.off() |
| Date | 14 June 2005 (original upload date) |
| Source | selbst erstellt mit GNU R. |
| Author | Thomas Steiner |
Licensing
| Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 or any later version published by the Free Software Foundation; with no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license is included in the section entitled GNU Free Documentation License. |
| This file is licensed under the Creative Commons Attribution-Share Alike 3.0 Unported license. | ||
Attribution: | ||
| ||
| This licensing tag was added to this file as part of the GFDL licensing update. |
Original upload log
Transferred from de.wikipedia to Commons by Wdwdbot using CommonsHelper.
- 2005-06-14 14:31 Thire 1600×1200× (49897 bytes) rot, höher, title gr
- 2005-06-14 08:48 Thire 1600×1200× (40011 bytes)