Tagged Questions
The rolling tag has no wiki summary.
4
votes
2answers
59 views
Algorithm for calculating the sum-of-squares distance of a rolling window from a given line function
Given a line function y = a*x + b (a and b are previously known constants), it is easy to calculate the sum-of-squares distance between the line and a window of samples (1, Y1), (2, Y2), ..., (n, Yn) ...
4
votes
1answer
175 views
R: create a data frame out of a rolling window
Lets say I have a data frame with the following structure:
DF <- data.frame(x = 0:4, y = 5:9)
> DF
x y
1 0 5
2 1 6
3 2 7
4 3 8
5 4 9
what is the most efficient way to turn 'DF' into a data ...
4
votes
3answers
3k views
Fast implementation of Rolling hash
I need a Rolling hash to search for patterns in a file. (I am trying to use the rabin-Karp string search algorithm).
I understand how a good hash works and how a good rolling hash should work but I ...
3
votes
2answers
42 views
Differences of values based on mean months and rolling data
I am trying to do something which seems simple but is proving a bit of a challenge so I hope someone can help!
I have a time series of observations of temperature:
Lines <-"1971-01-17 298.9197
...
3
votes
1answer
264 views
javascript rolling picture box
The first part of the following question was solved byAndrew Danylchenko - www.zebrasus.comThanks a ton for taking a look
If anyone knows why FF is reporting a sporadic issue with "div-animation.js" ...
3
votes
3answers
765 views
Best way to read in a rolling log file in .NET?
i need to read in a rolling log file in .NET 3.5sp1. I'm wondering what's the best way to do this? The file can get really big. An idea i had was to
Open File
Read file to last read line (in the ...
2
votes
2answers
104 views
Rolling Average to calculate rainfall intensity
I have some real rainfall data recorded as the date and time, and the accumulated number of tips on a tipping bucket raingauge. The tipping bucket represents 0.5mm of rainfall.
I want to cycle through ...
2
votes
1answer
51 views
implementation of rolling hash does not help in String Matching with Rabin Karp
Apologies for this probable repeated question.
I am trying to use rolling hash with Karp Rabin.I have looked a different implementations of rolling hash and I am wondering where I am going wrong. ...
2
votes
1answer
567 views
Ball rolling sound effect
I am working on a Labyrinth style app for iPhone using Chipmunk and openAL. I got everything working except the ball rolling sound. What I have tried is playing a small sound for each update in the ...
1
vote
2answers
196 views
How to speed up rolling regressions in Stata
Should I avoid rolling and manually code rolling regressions? Or am I better off creating a giant panel with overlapping entries and using statsby? I.e., give each window it's own by entry. In R I can ...
1
vote
1answer
163 views
Rolling window for 1D arrays in Numpy?
Is there a way to efficiently implement a rolling window for 1D arrays in Numpy?
For example, I have this pure Python code snippet to calculate the rolling standard deviations for a 1D list, where ...
1
vote
1answer
656 views
Cleanly force Log4j RollingFileAppender to roll shortly after midnight?
The normal behavior of the Log4j RollingFileAppender is to roll when the first log message occurs on a different day, but some feel warm and fuzzy with empty logfiles for each date, even if nothing ...
1
vote
1answer
192 views
How do I pipe the stdout of a program in DOS to a daily rolling logfile?
I've got a DOS program kicked off by a cmd script that dumps a lot of data I'd like to track in a log file. I can easily pipe it to a file - but I need a rolling logfile.
Is there an easy way to ...
1
vote
2answers
378 views
iPhone rolling page (maps application style)
how I can implement a "rolling page" effect like the one in iPhone maps application?
(The effect when the user tap the lower right button in the page here: ...
0
votes
1answer
25 views
Rolling Flat File Log File not rolling properly
I'm using Microsoft Enterprise 5 Logging block. While testing locally all rolling flat files are created correctly and Database logging to my local instance of SQL logs as expected. The problem is ...
0
votes
1answer
37 views
Rolling Timer Array for Calculating Averages
Language: C++
Development Environment: Microsoft Visual C++
Libraries Used: MFC
Problem: This should be fairly simple, but I can't quite wrap my head around it. I'm attempting to calculate a ...
0
votes
0answers
360 views
R how to calculate 12 months rolling return [closed]
do you know how to calculate the 12 months rolling return and volatility?
performance analysis?
0
votes
1answer
167 views
3-day rolling correlation calculation in MATLAB
I need to calculate 3-day correlation. A sample matrix is given below. My problem is that IDs may not be in the universe every day. For example, AAPL may always be in universe but a company - CCL may ...
0
votes
1answer
202 views
Flash: How to achieve rolling image effect?
I am a newbie in designing flash content. I am designing a flash movie to put up in my website. I need clouds to roll in the background. I have a cloud image, but I want it to roll in the background ...
0
votes
0answers
475 views
Circular Buffer Trace Listener for TextWriterTraceListener
I use TextWriterTraceListener for Tracing, and I want use an Circular Buffer Trace Listener for TextWriterTraceListener.
Microsoft has one Circular Buffer Trace Listener for XmlWriteTraceListener.
...
0
votes
1answer
617 views
MATLAB Help - Rolling Dice Simulation
I have to write a script that uses the user input to roll a certain amount of dice, with a certain amount of sides, with a certain amount of rolls , and a certain amount of trials.
I have the whole ...
0
votes
2answers
432 views
Log4J logs not rolling on size (Tomcat/Windows if relevant) when the system is under load, why could that be?
Does anyone have some ideas of;
" why our log4j log file does not
roll and keep growing huge in size?"
..It seems to only happen in one of our environments as well. Also,
The log file only ...
0
votes
0answers
30 views
whats an easy way to set up rolling periods (sic 1 week) for closing prices or volume figures for stock price activity over a 200 datapoint period
whats an easy way to set up rolling periods (sic 1 week) for closing prices or volume
-1
votes
2answers
480 views
Simulating a Ball Rolling Down a Slope - HTML5 Canvas Javascript
How can I simulate a ball rolling down a given slope using html5 canvas and javascript? Can someone provide code as to how to do this?