search for: f8rgensen

Displaying 3 results from an estimated 3 matches for "f8rgensen".

2001 Aug 13
3
Screen resolution in StarCraft
I have installed StarCraft succesfully, but the screen resolution is only 600x480, how do I change it to 1024x768? I have tried to write: wine --desktop 1024x768 starcraft.exe but that makes the area available 1024x768 inside a 600x480 resolution! Sincerely Jesper
2004 Nov 24
1
(PR#7393) Re: dhyper() does not allow non-integer values for
...; version of dhyper() works > > dhyperx<-function(x,m,n,k,log=3DFALSE){ > lp<-lchoose(m, x) + lchoose(n, k-x) - lchoose( m+n, k) > if (log) {lp} else {exp(lp)} > } > > # OK > dhyperx(1,10,90,10) > dhyperx(1,10.5,90,10) > > > > Erik J=F8rgensen > Danish Institute of Agricultural Sciences > > > > --please do not edit the information below-- > > Version: > platform =3D i386-pc-mingw32 > arch =3D i386 > os =3D mingw32 > system =3D i386, mingw32 > status =3D > major =3D 2 > minor =3D 0.1 >...
2005 Aug 22
1
Example in pdf() help file (PR#8083)
The example in the help file for pdf() plots the characters outside the plotting area in this for loop: for(i in c(32:255)) { x <- i y <- i points(x, y, pch=i) } The following loop seems to be working as intended for(i in c(32:255)) { x <- (i-31)%%16 y <- (i-31)%/%16 points(x, y, pch=i) } As an extra