search for: maxlag

Displaying 9 results from an estimated 9 matches for "maxlag".

Did you mean: maxlat
2004 Aug 06
1
Icecast2?
...quot; packets are thrown away, and new packets > continue to flow. that introduces skips but overall latency control is > better. i like your idea. I am trying it now, you can do it also at http://mcrg.uib.es:8000/live.ogg <p>It's configured with a prebuffering of 5 seconds, and a maxlag of 10 seconds. If a refbuf for a given client exceeds 10 seconds, and it's not a partial packets, it is silently discarded and removed. The "core" is shown below: if(abuf->timestamp > 0 && /* only if has timestamp */ client->pos == 0 && /* give a chanc...
2004 Aug 06
2
Re: PATCH: increase network congestion resilience
...se a bigger change: move the logic of actually sending the buffers to another function, and also exploit it to do some flow control. It is working in my site since a year without a glitch. It's something like (for old icecast version): <p>+int send_client_queue(client_t *client, int maxlag) +{ + refbuf_t *abuf; + long bytes, sbytes; + time_t now = time(NULL); + + if (client->last_sent < (now - maxlag * 2)) { + client->con->error = 1; /* lame client or DoS */ + return 1; + } + abuf = refbuf_queue_remove(&client->queue); + while (abuf) { +...
2004 Aug 06
2
Icecast2?
On 19/02/02 18:09, Likai Liu shaped the electrons to say: > >It's partially done in the patch I've sent you, completelly done in my > >current version... I can send you the second patch, you will save some > > work. > > how is the calculation being done? do you extract the bitrate from the > stream data, or do you use a different method? I'd advocate *that*
2008 Nov 20
1
different ACF results
Dear all, I have one Model (M3) fitted using the lme package, and I have checked the correlation structure of within-group errors using plot(ACF (M3,maxLag=10),alpha=0.05) But now I am not sure how to interpret this plot for the empirical autocorrelation function. The problem is that I am used to see/interpret diagrams in which all the autocorrelation Lags, except lag-1, are inside the confidence envelopes, or those plots where only Lags 1 and...
2010 Nov 07
1
When using ACF, receive error: no applicable method for 'ACF' applied to an object of class "c('double', 'numeric')"
I am guessing this is a very simple question, but this is only my second day with R so it is all still a bit imposing. I am trying to run an autocorrelation. I imported a CSV file, which has one column labeled "logistic". I ran the command: ACF(data$logistic,maxLag=10) However, I received the error: Error in UseMethod("ACF") : no applicable method for 'ACF' applied to an object of class "c('double', 'numeric')" I am thinking perhaps I need to change the data type, but I really don't know how (or if that is...
2004 Aug 06
2
Second patch again CVS version
...onds</prebuffer>... - Created a new function (send_client_queue) to send the client->queue. Better modularisation. - Moved queue_lenght verification to send_client_queue(). - instead of disconnecting when the client-queue > 25, it discards packages wich are older than prebuffer*2 (maxlag, in seconds). All clients I tried have recovered very well. - To avoid stalled connections, they are closed if the last package was sent before maxlag*2 (in seconds, which is prebuffer*4). - The server didn't check for the status of the client's socket before the unblocking send(). Thi...
2011 May 17
0
Hi! Help using FitARMA package in RExcel
...n RExcel an R function via =RApply(...) but I don't understand how may I include in the function several numeric arguments. Take this example: I want to use the following R function from "FitARMA" package: FitARMA(z, order = c(0, 0, 0), demean = TRUE, MeanMLEQ = FALSE, pApprox = 30, MaxLag = 30) What's the right syntax? How may I get the ARMA coefficients and/or the t+1 ARMA forecast in RExcel? Thank you very much! -- View this message in context: http://r.789695.n4.nabble.com/Hi-Help-using-FitARMA-package-in-RExcel-tp3528577p3528577.html Sent from the R help mailing list arch...
2012 May 02
3
Consulta gráfica
  Hola,   Por favor, ¿podríais indicarme qué recursos (librerías o ideas) pueden resultar de utilidad para crear un gráfico del estilo del de la figura 3.8 del siguiente link?   http://www.tsc.uvigo.es/BIO/Bioing/ChrLDoc3.html#3.5   Actualmente estoy utilizando funciones muy básicas y la verdad es que no me encuentro muy satisfecha con el resultado.   Muchas gracias.   Eva [[alternative HTML
2007 Mar 13
0
segfault with correlation structures in nlme
...;fm10var.nlme <- nlme(follicles ~ A + B * sin(2 * pi * w * Time) + C * cos(2 * pi * w * Time),data=Ovary, fixed= A+B+C+w~1, random=pdDiag(A+B+w~1), start = c(fixef(fm50var.lme),1)) >plot(ACF(fm10var.nlme,maxLag=10),alpha=.05) >fm20var.nlme <- update(fm10var.nlme,corr=corAR1(0.311)) >fm30var.nlme <- update(fm10var.nlme,corr=corARMA(p=0,q=2)) >fm60var.nlme <- update(fm10var.nlme,corr=corGaus(form=~Time)) *** caught segfault *** address 0x1075e501, cause 'memory not mapped' Trac...