ajout fichiers manquants et corrections bibliographie

This commit is contained in:
François Pelletier 2014-01-15 00:52:20 -05:00
parent 92616e09a6
commit 70977e9ee6
43 changed files with 7217 additions and 679 deletions

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
graphiques/ABBEYN-qq.pdf Normal file

Binary file not shown.

Binary file not shown.

View file

@ -0,0 +1,25 @@
## Exemples de courbes de densité
library(MASS)
source("fonctions.r")
dGAL1 <- function(x) dGALkappa(x,param=c(0,1,1,1))
dGAL2 <- function(x) dGALkappa(x,param=c(0,1,2,1))
dGAL3 <- function(x) dGALkappa(x,param=c(0,1,2,2))
dGAL4 <- function(x) dGALkappa(x,param=c(0,1,.5,1))
pdf("dGAL-exemples.pdf")
curve(dGAL1,from=-5,to=5,n=500,xlab="y",ylab="f(y)")
curve(dGAL2,from=-5,to=5,n=500,add=TRUE)
curve(dGAL3,from=-5,to=5,n=500,add=TRUE)
curve(dGAL4,from=-5,to=5,n=500,add=TRUE)
points(-2,dGAL1(-2),pch=21)
points(1,dGAL1(1),pch=21)
points(-2,dGAL2(-2),pch=22)
points(0.49,dGAL2(0.49),pch=22)
points(-2,dGAL3(-2),pch=15)
points(0.25,dGAL3(0.25),pch=15)
points(-2,dGAL4(-2),pch=16)
points(1.5,dGAL4(1.5),pch=16)
pchgraph <- c(21,22,15,16)
noms <- c("GAL(x; 0, 1, 1, 1)","GAL(x; 0, 1, 2, 1)","GAL(x; 0, 1, 2, 2)","GAL(x; 0, 1, 0.5, 1)")
legend(-5, 0.7, noms, cex=1.0,
pch=pchgraph, lty=1)
dev.off()

BIN
graphiques/mitchell1.pdf Normal file

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.1 KiB