search for: boxcar

Displaying 10 results from an estimated 10 matches for "boxcar".

Did you mean: borrar
2007 Sep 04
0
Boxcar now available!
Hey all! I''ll keep this short as I know that you''re all probably just as busy as we''ve all been. We (PLANET ARGON) are excited to announce that Boxcar, our new hosting solution for Ruby on Rails, is now open to the public. We''ve been quietly making announcements to our existing customers, announcement lists, and finally our company blog(s). Read the announcement here: * http://blog.planetargon.com/2007/8/22/rails-boxcar-is-here For...
2007 Jul 31
1
Queue Time to Speak to Agent Algorithm?
Does anyone know the algorithm that Asterisk uses to figure out when you'll be speaking with an agent? I've heard it say such bizarre things as '2 minutes' when there area 2 calls waiting ahead of a person and 1 agent logged in.
2012 Aug 13
4
dimnames in an array(I'll be grateful if this message will be passed to all list users)
Hello, I'm hoping someone with a wide experience with R may be able to see what the program is trying to tell me. I've got an array: y1=rnorm(41,0.2) y2=rnorm(41,0.2) y3=rbind(y1,y2) data11<-array(0,c(41,2,2)) data11[,1,]=y3 data11[,2,]=y3 rownames(data11)<-rownames(data11, do.NULL = FALSE, prefix = "Obs.") colnames=c("V","R")
2006 Aug 16
7
ActionWebService: XMLRPC Server Multicall possible?
...t possible to send multicall requests to the Web service? I tried to use multicall and get the error message: no such method ''system.multicall'' on API [MyAPI] In Changeset 2021 there is the following commit message: add ''system.multicall'' support to XML-RPC. boxcarred methods must still exist on the target service(s), value casting will still be performed, and recursive ''system.multicall'' calls are not allowed. Any hints what I can do to enable multicalls in my Rails application? best regards, Holger
2009 Feb 26
3
Moving Average
I am looking for some help at removing low-frequency components from a signal, through Moving Average on a sliding window. I understand thiis is a smoothing procedure that I never done in my life before .. sigh. I searched R archives and found "rollmean", "MovingAverages {TTR}", "SymmetricMA". None of the above mantioned functions seems to accept the smoothing
2004 Jul 04
1
Rmetrics 191.10057
...-t with unit variance, and for the skew GED distribution. 2004-06-25 fSeries/R New functions have been added which compute the Haeviside "H" and related functions; just another sign function "Sign", the delta function "delta", the boxcar function "boxcar" and the ramp function "ramp". 2004-06-24 fOptions/demo The 3D Plot functions for the generalized Black-Scholes option prices and the sensitivities have been moved to the examples located in the demo directory. 2004-06-14 fSeries/data...
2008 Dec 16
8
sliding window over a large vector
Hi all, I have a very large binary vector, I wish to calculate the number of 1's over sliding windows. this is my very slow function slide<-function(seq,window){ n<-length(seq)-window tot<-c() tot[1]<-sum(seq[1:window]) for (i in 2:n) { tot[i]<- tot[i-1]-seq[i-1]+seq[i] } return(tot) } this works well for for reasonably sized vectors. Does
2001 Jun 11
0
Metadata Schema
...> Jabber works, and I assume they are conformant to the XML spec. I don't know about SOAP, but in XMLRPC you only send one call and receive one return structure per connection. So again, separate documents. To get around the miserable latency this introduces, they use a hack called 'boxcarring' where you stick a list of calls in an array and send that, and receive a corresponding array of return values. Ugly, but spec compliant. -r --- >8 ---- List archives: http://www.xiph.org/archives/ Ogg project homepage: http://www.xiph.org/ogg/ To unsubscribe from this list, send...
2008 Sep 02
7
Deploying My Rails App
I have just finished my first Rails application following the lynda.com tutorial, but I am not sure how to get my application on the internet. I have an ftp account through the applemachine server, but from what I have read, I''m afraid I will not be able to host my application there. What I am looking for is step by step directions on how to get from a working Ruby on Rails application
2001 Oct 28
0
Summary: A speed improvement challenge
...he thoughtful responses, Frank Harrell --------------------------------------------------------------------- Frank, to restate your problem: 1.) do the linear interpolation as a first cut. 2.) find the subset of points that have more than one neighbour - this is kernel density estimation with a boxcar window of half-width del 3.) perform multinomial sampling on the x values for that subset - ie from (abc)(defg)(hij) select, say, afj, with probabilities (pqr)(stuv)(wxy) Step 2 could be done with a call to outer(), but that would probably be wasteful, especially 'cos it doesn't exploit th...