Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

10
votes
6answers
2k views

Auto-Interval precision in MS Chart

I'm currently using the charting within .NET using System.Windows.Forms.DataVisualization.Charting.Chart. Thus far it seems very powerful, and works great. However, there is a huge problem in terms of ...
9
votes
1answer
535 views

Actual frequency of device motion updates lower than expected, but scales up with setting

I am porting an app that I originally wrote using the accelerometer for IOS 3, to incorporate the new IOS 4 motion capabilities. While capturing motion, the application does little else - no graphics ...
9
votes
2answers
5k views

Create a jQuery special event for content changed

I'm trying to create a jQuery special event that triggers when the content that is bound, changes. My method is checking the content with a setInterval and check if the content has changed from last ...
7
votes
1answer
3k views

Rounding a Java BigDecimal to the nearest interval

I have a BigDecimal calculation result which I need to round to the nearest specified interval (in this case it's the financial market tick size). e.g. Price [Tick Size] -> Rounded Price 100.1 ...
6
votes
6answers
915 views

Algorithm to find the maximum sum in a sequence of overlapping intervals

The problem I am trying to solve has a list of intervals on the number line, each with a pre-defined score. I need to return the maximum possible total score. The catch is that the intervals ...
6
votes
3answers
7k views

How to add markers on Google Maps polylines based on distance along the line?

I am trying to create a Google Map where the user can plot the route he walked/ran/bicycled and see how long he ran. The GPolyline class with it’s getLength() method is very helpful in this regard (at ...
5
votes
2answers
172 views

SQL to find time elapsed from multiple overlapping intervals

Not using MSSQL or DB2 or Oracle. No CTE. No OVERLAP predicate. No INTERVAL data type. The situation: on a vehicle to be repaired work can not start until all parts ordered for the job have been ...
5
votes
5answers
276 views

Loop through two arrays deleting overlaps in perl

I have two sets of ranges, represented by [ start, stop ] values. Some of the ranges overlap, meaning that the start of one range is in between the [ start, stop ] of the other range. I'd like to make ...
5
votes
6answers
437 views

Terminate a thread after an interval if not returned

I have a thread which grabs some data from network or serial port. The thread must terminate (or return false) if no data is received within 5 seconds. In other words, if running the thread is taking ...
5
votes
6answers
552 views

Python: Mapping from intervals to values

I'm refactoring a function that, given a series of endpoints that implicitly define intervals, checks if a number is included in the interval, and then return a corresponding (not related in any ...
4
votes
1answer
90 views

How to operate on PostgreSQL interval datatype using jdbc/spring-jdbc not using PGInterval?

Java date & time datatypes are as everybody knows, there's no need to focus on that. However, when I'm using JDBC or Spring-based extensions, such as SimpleJdbcTemplate to retrieve and store ...
4
votes
4answers
110 views

Is there a CPAN module for converting seconds to English?

Is there a CPAN module that can convert a number of seconds to a human-readable English description of the interval? secToEng( 125 ); # => 2 min 5 sec secToEng( 129_600 ); # => 1 day 12 h The ...
4
votes
1answer
250 views

Help in a DP problem

I'm trying to solve a problem from SPOJ ( link ), which can be briefly described like this: Given n intervals, each with an integer beginning and end, and given the end with max time ( let's call it ...
4
votes
1answer
129 views

Finding percentage time by hour from irregular dates

I have a table like the following, each entry a change in STATUS on the given time. The status can be repeated because other columns have sub-status information. How can I get a percentage time for ...
4
votes
3answers
326 views

Haskell Range Map library

Is there a Haskell library that allows me to have a Map from ranges to values? (Preferable somewhat efficient.) let myRangeMap = RangeMap [(range 1 3, "foo"),(range 2 7, "bar"),(range 9 12, "baz")] ...
4
votes
1answer
1k views

Interval tree algorithm that supports merging of intervals with no overlap

I'm looking for an interval tree algorithm similar to the red-black interval tree in CLR but that supports merging of intervals by default so that there are never any overlapping intervals. In other ...
4
votes
2answers
4k views

Checking whether clearInterval has been called?

Given this code: bob = setInterval(function, 1000); clearInterval(bob); Is there now a way to know if that interval has been cleared? Currently, I keep track of this myself, by unsetting 'bob', ...
4
votes
1answer
2k views

How do I convert an interval into a number of hours with postgres?

Say I have an interval like 4 days 10:00:00 in postgres. How do I convert that to a number of hours (106 in this case?) Is there a function or should I bite the bullet and do something like ...
3
votes
1answer
87 views

How can I plot an interval-valued function in mathematica?

Consider the following definition: f[x_]=Piecewise[{{0,x<1/2},{Interval[{0,1}],x==1/2},{1,x>1/2}}]; Then when one does the Plot[f[x],{x,0,1}] of the function, the graph does not depict the ...
3
votes
3answers
116 views

MySQL select rows from exactly 7 days ago

I'm completely stumped on this one, being trying for hours but with no success, hoping someone can help. Trying to build a cron script to run daily that returns the rows that are exactly 7 days older ...
3
votes
2answers
44 views

Timeout Function with Paramaters that change on runtime

I'm trying the following: var timeout = 300; var colors = ['aqua', 'limegreen'] for (var i=0; i < 4; ++i) { console.log(colors[i % colors.length]); setTimeout(function() { ...
3
votes
4answers
191 views

Postgres birthdays selection

I work with a Postgres database. This DB has a table with users, who have a birthdate (date field). Now I want to get all users who have their birthday in the upcoming week.... My first attempt: ...
3
votes
5answers
371 views

Interval Time subtraction in Java

I was trying to find the difference in time (HH:mm:ss.SSS) in Java, where each time can be more than 24 hours. SimpleDateFormat does not support time which is greater than 24 hours. For example, ...
3
votes
2answers
99 views

Java: how to index elements that have an associated interval?

Suppose I have a number of objects with a start value and an end value that are comparable via some Comparator. What kind of collection can I use to make an index of the objects, so that given an ...
3
votes
6answers
899 views

Joda Time LocalTime of 24:00 end-of-day

We're creating a scheduling application and we need to represent someone's available schedule during the day, regardless of what time zone they are in. Taking a cue from Joda Time's Interval, which ...
3
votes
1answer
295 views

Make a range in postgres

how can I make a range in a select in PostgreSQL ? I'd like to have this return: num --- 1 2 3 4 5 6 In a query like: SELECT range(1,6) AS num;
3
votes
4answers
815 views

Where can I find the range interval partition tablespaces in the data dictionary?

For a range interval partitioned table, you can specify multiple tablespaces like: CREATE TABLE range_part_interval_table(col1 NUMBER, col2 NUMBER) PARTITION BY RANGE (col1) INTERVAL (10) STORE IN ...
3
votes
4answers
418 views

Data structure for handling intervals

I have got a series of time intervals (t_start,t_end), that cannot overlap, i.e.: t_end(i) > t_start(i+1). I want to do the following operations: 1) Add new (Union of) intervals [ {(1,4),(8,10)} U ...
3
votes
4answers
2k views

Is there an easy way to Calculate and format time/date intervals in java?

I'm familiar with the the date and time classes in the JDK and their associated formatting methods. I may be blind, but I cannot find an equivalent set of classes for processing time intervals. For ...
3
votes
5answers
6k views

How to convert an interval like “1 day 01:30:00” into “25:30:00”?

I need to add some intervals and use the result in Excel. Since sum(time.endtime-time.starttime) returns the interval as "1 day 01:30:00" and this format breaks my Excel sheet, I thought it'd ...
2
votes
1answer
69 views

Count the number of records active between two dates

I am trying to do a query to retreive the number of active calls for a given time, I have a table CALLS with all the calls record with an AnsweredTime and ReleaseTime and I need to retrieve the ...
2
votes
3answers
108 views

Merge Records Over Time Interval

Let me begin by saying this question pertains to R (stat programming language) but I'm open straightforward suggestions for other environments. The goal is to merge outcomes from dataframe (df) A ...
2
votes
1answer
100 views

Find overlapping intervals

Context: As far as I can see, R lacks consistent functions which facilitate the data preparation in the context of survival/event history analysis, e.g. episode-splitting to include time-varying ...
2
votes
2answers
139 views

Update TextView within custom ListView

I'm trying to update the TextView within a custom ListView at a set time interval, for example the TextView will update every 200ms however I can't figure out how to do this. The object updates with a ...
2
votes
1answer
132 views

What is the best timer technique for exact one second intervals?

I am writing a simple timekeeping app for a specialized outdoor sport. The app performs a series of calculations every second, and displays information of interest to the user. Elapsed time is key to ...
2
votes
1answer
95 views

ISO 8601 Repeating Interval

Wikipedia gives an example of an ISO 8601 example of a repeating interval: R5/2008-03-01T13:00:00Z/P1Y2M10DT2H30M This is what this means: R5 means that the interval after the slash is repeated 5 ...
2
votes
2answers
105 views

MySQL: check if a value is contained in a range interval

I was wondering if it is possible to check if a string value is contained in a column given that the column contains the start and end values. For example: if the table has a column NR with the ...
2
votes
3answers
393 views

Firing method on interval with System.Threading.Timer in winForm C#

What I want to do is to use the System.Threading.Timer to execute a method with a interval. My example code looks like this atm. public partial class Form1 : Form { public Form1() { ...
2
votes
1answer
164 views

Algorithm for partitioning 1-dimensional space

I two sets of intervals that correspond to the same 1-dimensional (linear) space. Here is a rough visual--in reality, there are many more intervals and they are much more spread out, but this gives ...
2
votes
2answers
266 views

MySQL Query Problem with INTERVAL, need 0 if no data provided

i have the following statement: SELECT count(rs.rsc_id) as counter FROM shots as rs where rsc_rs_id = 345354 AND YEAR(rs.timestamp) = YEAR(DATE_SUB(CURDATE(), INTERVAL 6 MONTH)) ...
2
votes
2answers
106 views

Building a query that is most efficiently finds If a range of dates is in an interval?

Overlap exists between DateRange1 and DateRange2 DateRange1: |-----------| DateRange2: |-------| Overlap does not exist between DateRange3 and DateRange4 DateRange3: ...
2
votes
5answers
1k views

C: How to wrap a float to the interval [-pi, pi)

I'm looking for some nice C code that will accomplish effectively: while (deltaPhase >= M_PI) deltaPhase -= M_TWOPI; while (deltaPhase < -M_PI) deltaPhase += M_TWOPI; What are my options?
2
votes
2answers
219 views

PL/SQL and date intervals

I have a date and I'd like to print the offset from that date. I can do this: dbms_output.put_line(to_char(g_startDate - interval '4' month ,'YYYY-MM-DD')); and it works fine. The problem is that ...
2
votes
2answers
422 views

C# ISO 8601 Time Interval validation

I have searched for a while and can't seem to find anything that's related to this. I need to validate an ISO 8601 time interval. There is loads of stuff about ISO 8601 date times but i specifically ...
2
votes
1answer
445 views

Python: Dynamic interval data structure

I am looking for some python code to efficiently compute interval overlaps. I've used the interval tree of the bx-python package before, but now need to delete intervals from the tree (or better yet, ...
2
votes
1answer
698 views

Plot multiple functions in different intervals (Mathematica)

I need some help in Mathematica. I'm trying to plot functions that are stored in lists like: list = {{3x,1,5},{2x^2,0,4}} I need get an output similar to if I inputted: ...
2
votes
1answer
947 views

Weighted Interval Scheduling problem & Dynamic program

My question is related to this other discussion. I'm trying to implement that algorithm using the dynamic program into a recursive call. Problem statement: Job j starts at sj, finishes at fj,and ...
2
votes
2answers
203 views

Group together arbitrary date objects that are within a time range of each other

I want to split the calendar into two-week intervals starting at 2008-May-5, or any arbitrary starting point. So I start with several date objects: import datetime as DT raw = ("2010-08-01", ...
2
votes
3answers
464 views

How do i refresh my Twitter API every 15 seconds?

I was successful in installing the TWITTER API jquery script, but I can't figure out how to make the script refresh with the latest tweets without refreshing the entire page IN 15 SECOND INTERVALS. ...
2
votes
2answers
287 views

Check time interval using SQL condition

I'm storing some intervals in the SQL, example: id INT from DATE to DATE How can I check, using only one condition (if possible) if a NEW interval conflict with a existing one? Examples: ...

1 2 3 4 5