Displaying 2 results from an estimated 2 matches for "ygwypf".
2007 Oct 17
1
Looking for free DID with IAX
I know I can get free DID's with SIP, is anyone giving out free DID's with
IAX?
Thanks in advance,
------------------------------------------------------------------------
Steve Edwards sedwards at sedwards.com Voice: +1-760-468-3867 PST
Newline Fax: +1-760-731-3000
2011 Apr 15
1
[Rcpp-devel] Find number of elements less than some number: Elegant/fastsolution needed
...f4 <- cxxfunction(signature(x="numeric", y="numeric"), src,
plugin='RcppArmadillo')
## danger -- violates R semantics
f5 <- cxxfunction(signature(x="numeric", y="numeric"), src2,
plugin='RcppArmadillo')
## this is a really ugly test. ygwypf, i suppose :)
for (i in 1:5) {
x1 <- x <- rnorm(5e6)
y1 <- y <- rnorm(5e6)
print( cbind(
r1=system.time(r1 <- f1(x,y)),
r2=system.time(r2 <- f2(x,y)), r3=system.time(r3 <- f3(x1,y1)),
r4 = system.time(r4 <- f4(x,y)), r5 = system.time(r5 <- f5(x,y))
))...