search for: flannery

Displaying 11 results from an estimated 11 matches for "flannery".

2007 Jun 27
1
User mapping via pam
...up Jun 27 13:50:57 itsrv dovecot: auth(default): master out: USER 1 andrew system_user=andrew uid=1001 gid=1001 home=/home/Andrew Also, is this behavior dependant on me setting blocking=yes for "passdb pam" in dovecot.conf? (for this test It was set) Thanks, Andrew Flannery
2005 Nov 03
1
Real FFT
The book "Numerical Recipes in Fortran77" by Press, Teukolsky, Vetterling and Flannery describes a way to "pack" the even and odd coordinates of a real vector "R" into a complex vector "C" of half the length. Then using various FFT symmetries, they extract the FFT of "R" from the FFT of "C" which is half the length of "R",...
2007 Sep 07
0
[LLVMdev] Compile Linux Kernel with LLVM gcc frontend
On Fri, 31 Aug 2007, Patrick Flannery wrote: > I can say that it does not for me,running x86_64, I have been generating > errors for submission by testing on a number of gnu utilities starting > with binutils. If you run into problems, please file bugs. -Chris > On Aug 31, 2007, at 6:11 PM, "Haifeng He" <h...
2007 Aug 31
2
[LLVMdev] Compile Linux Kernel with LLVM gcc frontend
I can say that it does not for me,running x86_64, I have been generating errors for submission by testing on a number of gnu utilities starting with binutils. Patrick On Aug 31, 2007, at 6:11 PM, "Haifeng He" <hehaifeng2nd at gmail.com> wrote: Hi, I am curious about if the current LLVM implementation can handle Linux kernel (or any particular version of Linux kernel). The
2008 Jul 30
1
Setting fixed size for segement plot using stars() (axes size vs print size)
...n I used a different scale function, which scaled them by area of the circle rather than radius scale <- function(x, Mr = 1 , Mx = 100) { ((x/Mx)^.5)*Mr} Where x is the the value, Mr is the Maximum radius, and Mx is the maximum data value. You could change the exponent .5 to .57 if you wanted Flannery compensation. My problem is that I want the print size of these proportional symbols to be the same regardless of the number of data points as in this example, where exporting these two plots as PDF(which have been scaled) will produce different size symbols for the same value, when compared sid...
2007 Oct 22
2
pam_ldap.so memory leaks?
Hello List, I have a question about dovecot-1.1.0-beta3 but first I'll ramble a little bit: Recently I upgraded a 0.99 installation of dovecot to 1.0.5. All went relatively smoothly until the dovecot-auth process began returning "out of memory" after a day. There is a rather large user base here. The current setup is using passdb pam with blocking=yes, with pam_ldap.so handling
2010 Feb 03
1
Excluding/Hiding a local, absolute path in 3.0.7
Hello, I'm attempting to update many of my rsync scripts and was trying to hide/exclude absolute files/directories from being sync'd. After reading through the man page section on FILTER RULES, their modifiers, etc., and the mailing list, it seems like the following simple example should work. I'm using the example from the man-page, where it talks about excluding /etc/passwd. In
2007 Jun 29
4
Copyright notices in code
I thought about committing this change to all .c files: Removed all Copyright Timo Sirainen comments. They weren't always correct and the year numbers were rarely updated when something was changed. Copyright is owned by the creator by default in practically all countries, there's no need to advertise it everywhere. Can anyone think of reasons why this wouldn't be a good idea?
2004 Sep 15
6
Bessel function
Dear all Currently, I'm implementing the generalized hyperbolic distribution into Splus. Unfortunately the Bessel function is not implemented in Splus. In R the Bessel function does exist but it is an internal function and I'm not able to look at the code. Is there any possibility to see the code of the Bessel function in R or does anybody has an implementation of the Bessel function in
2007 Jun 08
3
CentOS and Wordpress
...o about coaxing CentOS into allowing me to run WordPress. And so I have come here to tap into the wisdom of the mailing list. Might anybody here have some hints as to what I might do to solve this puzzle? Thank you, -- ~PeteVG The truth does not change according to our ability to stomach it. ~ Flannery O'Connor
2012 Apr 23
2
automating a script to read a file
...ata could be the following: # -100, 1000, 976.02, 230, -34, 0.7543 # 0, 500, 270, 350, -13, 0.7707 # or any other data of similar form erf <- function(z) { ## Chebyshev fitting formula for erf(z) from ## Vetterling, W.T., , W.H. Press, S.A. Teukolsky, and B.P. Flannery. 1999. ## Numerical Recipes: Example Book [C], Second Edition. ## Cambridge University Press, NY. , Chapter 6-2. t <- 1.0/(1.0 + 0.5 * abs(z)) ## use Horner's method ans <- (1 - t * exp(-z * z - 1.26551223 + t * (1.00002368...