similar to: Programs in WINE are lagging

Displaying 20 results from an estimated 10000 matches similar to: "Programs in WINE are lagging"

2007 Jun 04
1
Help with conditional lagging of data
Dear Friends, I have some data with three columns named ID, Year and Measure X. I need to create a column which gives me a lag for each ID (note not a continous lag), but a lag conditional on the id and the given year. Please find below a sample of the data Input file sample ID Year X AB12 2000 100 AB12 2001 120 AB12 2002 140 AB12 2003 80 BL14 2000 180 BL14
2011 Feb 16
2
CS 1.6 lagging badly (Intel 4500MHD)
Hey, I'm running Ubuntu Maverick with Wine 1.2.2. Computer specs on my signature. I'm trying to play Counter Strike 1.6 on my netbook at my philosophy classes, but I'm getting a lot of lag (we're talking about <10 FPS here). When I had the power-hog Windows, I used to play it nicely, around 60fps (hey, I'm on a netbook), but now in Ubuntu Mav., I'm getting that slow
2011 Jan 08
0
Synchronizing a streaming client to the server Was: Idea to possibly improve flac?
The issue is that silent frames compress to a very small size, and the Ogg packeting layer can put more than one FLAC frame into a page. So if you have an extended period of silence with a live or rate-limited input stream, the client buffers may exhaust themselves before a new page can be put together and transmitted. > This thread has raised several good topics. It's surprising that
2004 Sep 07
4
Maximum tollerable lag/jitter for IAX2 w/oji tterbuffer enabled?
> -----Original Message----- > From: Chris Shaw [mailto:chriss@watertech.com] > Sent: September 7, 2004 4:40 PM > To: Asterisk Users Mailing List - Non-Commercial Discussion > Subject: Re: [Asterisk-Users] Maximum tollerable lag/jitter for IAX2 > w/ojitterbuffer enabled? > {clip} > > If you can reproduce it, this smells like a bug... IAX runs over TCP and TCP >
2012 Nov 15
3
Can you have a by variable in Lag function as in SAS
Hello, I want to use lag on a time variable but I have to take date into consideration ie I don't want days to overlap ie: I don't want my first time of today to match my last time of yeterday. In SAS I would use : data x; set y; by date tim; previous=lag(tim); if first.date then do; previous=.; end; run; How can I do something similar in R? I can't find
2018 Oct 12
2
[Bug 108346] New: System lagging
https://bugs.freedesktop.org/show_bug.cgi?id=108346 Bug ID: 108346 Summary: System lagging Product: xorg Version: unspecified Hardware: Other OS: All Status: NEW Severity: normal Priority: medium Component: Driver/nouveau Assignee: nouveau at lists.freedesktop.org
2012 Oct 11
2
ccf(x,y) vs. cor() of x and lagged values of y
Hi I'm computing the correlation between two time-series x_t and y_t-1 (time-series lagged using the lag(y,-1) function) using the cor() function and the returned value is different from the value of ccf() function at the same lag. Any ideas why this is so? Thanks in advance for any hints. Mihnea [[alternative HTML version deleted]]
2009 Jul 25
3
how to smooth timeseries without the lagging?
Hi all, If I use a moving average, it will smooth the choppy time series, but it will lead to lagging... How do I smooth timeseries without the lagging effect? Thanks!
2010 Sep 11
0
Cursor lagging with Linux KMS
A minor bug I've noticed: when kernel modesetting is enabled (as it is by default on most current Linux distributions), the mouse cursor lags for a few seconds when starting an application in Wine, or when a Wine'd application is doing some heavy activity. The former is not really worth mentioning, but the latter actually causes problems in a few fullscreen games I've tried, since the
2009 Aug 12
2
Wine lags A LOT when programs are started—and getting worse
Hi, I'm a pretty new Linux (Ubuntu) user, only a few weeks, and I few days ago I started having troubles with Wine. I posted this over at the Ubuntu Forums but haven't gotten a reply yet, so I thought I'd try here as well. I'll just quote my posts. First post: > First off I'm new to Linux, so sorry if you have to explain something twice to me. > > Basically my
2004 Aug 06
1
Dummy soundcard driver for Windows (OT)
Yes there is - both LiveIce and mpegmixer used a terminal as an interface - telnet/ssh into the box and control it all. Of course back when mpegmixer was released (1996) there was no streaming solutions available so you could only remotely control stuff within earshot ;-) > > But there is no real "remote DJ"-software yet, is there? I mean, not > just "autofades",
2011 Mar 17
1
Time lagging on DomU
Hi, on one of our systems I see that while the time on the Centos 5.4 Host is correct it lags behind on two of the 5.5 guests by almost 5 minutes but is correct for the third domU. From what I understand the clock of the system is controlled by the host and and guest cannot write to it (and because of that not change it). Does anyone now what the cause could be and how I can fix the time for
2011 Jan 08
0
Synchronizing a streaming client to the server Was: Idea to possibly improve flac?
On Fri, Jan 7, 2011 at 7:36 PM, Brian Willoughby <brianw at sounds.wa.com> wrote: > This thread has raised several good topics. ?It's surprising that the > FLAC-Dev list has been silent for years, and now suddenly there are several > good ideas to discuss. I'll take credit for this, toot toot toot :D > > On Jan 7, 2011, at 15:04, David Richards wrote: >>
2004 Jan 23
1
lags in regressions
Hi! I am trying to get R to run regressions for me of a variable on lagged differences of itself. Specifically: x-x(-1) = a + b1(x(-1)-rx(-2))+b2(x(-4)-rx(-5))+e I need to do this a lot of times, altering the value of r. What I've been trying to do was to use the lag() command to create lagged versions of these variables and then constructing these differences by hand (i.e. creating
2012 Jan 10
1
Lag() and lag()
lag is a very confusing function i try to plot lag(x,-h) and y , the results are the same figures for all the h lags. then i saw online people use lag(x,-h) as xreg in arima that won't work in my eyes if lag function is consistent, isnce it returns the same value for all the lags i don't know in which occasion people will use this function besides I suppose Lag(x,h) is the same as
2004 Aug 06
0
Dummy soundcard driver for Windows (OT)
On 9 Jun 2003 at 17:48, Dave St John wrote: > > One more reason why computers will never replace real DJ's ;-) > I believe its called desktop webcasting or will be ;) > > Doesnt sound like replacing dj's, its just enabling them to dj > remotely without the need and fuss localy oh and not to mention > redundancy, doing a webcast from a house/office/home pc is a major
2009 Jan 03
2
R badly lags matlab on performance?
Here's a small R program: --------------------------------------------------------------------------- a <- rep(1,10000000) system.time(a <- a + 1) system.time(for (i in 1:10000000) {a[i] <- a[i] + 1}) --------------------------------------------------------------------------- and here's its matlab version:
2011 Oct 06
1
Coefficients for lagged plm model variables not calculated
Hello, So I am afraid I am having a recurring problem that I just can't figure out. I am using the plm package to conduct a panel analysis - although I am not sure if the problem is arising as a result of the plm package or something more general. I am trying to run a fixed effects model with effects over time and individual. The model has various lags, and the problem is that these lags do
2010 Jul 21
1
The opposite of "lag"
Hello! I have a data frame A (below) with a grouping factor (group). I take my DV and create the new, lagged DV by applying the function lag.it (below). It works fine. A <- data.frame(year=rep(c(1980:1984),3), group= factor(sort(rep(1:3,5))), DV=c(rnorm(15))) lag.it <- function(x) { DV <- ts(x$DV, start = x$year[1]) idx <- seq(length = length(DV)) DVs <- cbind(DV, lag(DV,
2001 Mar 23
0
Re: Finding functions (eg. 'lag')
Many thanks to those who gave me a loaf, and others who taught me how to fish! Stuart > > > From: "Dr Stuart Leask" <stuart.leask at nottingham.ac.uk> > > To: "R-help" <r-help at stat.math.ethz.ch> > > Subject: [R] 'lag' in R? > > Date: Thu, 22 Mar 2001 16:46:18 -0000 > > X-Priority: 3 > > X-MSMail-Priority: Normal