Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

24
votes
11answers
1k views

Which programming language or a library can process Infinite Series?

Which programming language or a library is able to process infinite series (like geometric or harmonic)? It perhaps must have a database of some well-known series and automatically give proper values ...
23
votes
12answers
1k views

How do I find the millionth number in the series: 2 3 4 6 9 13 19 28 42 63 …?

It takes about minute to achieve 3000 in my comp but I need to know the millionth number in the series. The definition is recursive so I cannot see any shortcuts except to calculate everything before ...
18
votes
12answers
6k views

Elegant way to remove items from sequence in Python?

When I am writing code in Python, I often need to remove items from a list or other sequence type based on some criteria. I haven't found a solution that is elegant and efficient, as removing items ...
8
votes
3answers
4k views

C#/Excel: Working Around Maximum Series Size On Chart

I need help programatically graphing more points than can fit in a single Excel series. According to http://office.microsoft.com/en-us/excel/HP100738491033.aspx the maximum number of points ...
7
votes
6answers
1k views

Sum of series: 1^1 + 2^2 + 3^3 + … + n^n (mod m)

Can someone give me an idea of an efficient algorithm for large n (say 10^10) to find the sum of above series? Mycode is getting klilled for n= 100000 and m=200000 #include<stdio.h> int ...
6
votes
1answer
261 views

Find the no. of ways of getting a sum n with all positive integers less than n

For a given number n, say 2 how many ways can we get a sum 2 using numbers less that 2. 1+1 = 2 so, for 2 - just 1 way. n = 3 1+1+1=3 1+2=3 so,for 3 - it is 2 ways n = 4 1+1+1+1=4 ...
5
votes
2answers
191 views

finding all series within an array

How do I find number of all the series (combinations of an array that have at least 3 consecutive values, like [7,8,9]) and have the longest number of values? from [3,4,1,2,2] it would be 2 - ...
4
votes
2answers
744 views

R: Filling missing dates in a time series?

I have a zoo time series with missing days. In order to fill it and have a continuous series I do... I generate a chron date-time sequence from start to end. I merge my series with this one. I use ...
3
votes
1answer
112 views

Needed algorithm for the given series

In an online event, we have to frame an algorithm to generate a series as given below..., For input 6, the algorithm has to generate..... 123 624 693 4812 15510 12186. we thought a lot and really ...
3
votes
7answers
148 views

How to iterate over the series: 1, -2, 3, -4, 5, -6, 7, -8, …?

How would you iterate over the following series in Javascript/jQuery: 1, -2, 3, -4, 5, -6, 7, -8, ... Here is how I do this: n = 1 while (...) { n = ((n % 2 == 0) ? 1 : -1) * (Math.abs(n) + 1); ...
3
votes
2answers
1k views

Create barchart using jfreechart with bars of same category together

I want to make bar chart using jfreechart such that the bars which belong to the same category should be displayed adjacent without any gaps. The categories should be displayed with gaps. Also each ...
2
votes
1answer
76 views

Pi value estimation with series

Here's my problem: Compute the value of π using the following series: ((π^2)-8)/16=[sum from 1 to pos. infinity] 1/(((2n−1)^2)*((2n+1)^2)) • Find the smallest number of terms required to obtain an ...
2
votes
0answers
78 views

Finding how many terms of the harmonic series must be summed to exceed x? [migrated]

The harmonic series is the sum 1 + 1/2 + 1/3 + 1/4 + 1/5 + 1/6 + ... + 1/n + ... It is known that this sum diverges, meaning (informally) that the sum is infinite and (more formally) that for ...
2
votes
3answers
89 views

Delphi Tchart x and y values in zoomed rectangle

I have a tchart series that contains 5000 points from a data base. I can zoom in on a particular section of the data with the mouse. I wish to copy only the x and y values that are visible in the ...
2
votes
1answer
59 views

Compute a series

Assignment: Write a method to compute the following series: m(i) = 1 - (1/2) + (1/3) - (1/4) + (1/5) - ... + ((-1)^(i+1))/i Write a test program that displays the following code: i: m(i): 5 ...
2
votes
2answers
49 views

matlab: how to save TIFF series?

Lets say I have a 3D array 'img' (x, y, frame) and want to save it as a TIFF. So far I was doing it by saving one-by-one like this: for K=1:length(img(1, 1, :)) outputFileName = ...
2
votes
2answers
350 views

Common way to generate finite geometric series in MATLAB

Suppose I have some number a, and I want to get vector [ 1 , a , a^2 , ... , a^N ]. I use [ 1 , cumprod( a * ones( 1 , N - 1 ) ) ] code. What is the best (and propably efficient) way to do it?
2
votes
1answer
254 views

Is this possible to find equation of a series using genetic programming?

I have a list of numbers which form a series. I want to find the equation which can regenerate the same series. Is this possible? Also, what would you recommend to program it (GA, GP, etc). Please ...
2
votes
3answers
547 views

Realtime data processing in Django/Python

We are working on a project involving realtime data processing. We plan to use Django/Python. The actual process is: Tens of thousands of devices take 4 samples per seconds (0, 0.25, 0.5, 0.75) and ...
2
votes
1answer
488 views

Arima Arma Time series Models in Java

I am looking for Arima time series models in java.(Googling did not help) can anyone point to a resource where I can download Arima/Arma model codes made in java
2
votes
4answers
1k views

1 + 1/2 + 1/3 + — + 1/n =? [closed]

Is there any formula for this series? I think it is a harmonic number in a form of sum(1/k) for k = 1 to n
2
votes
4answers
124 views

What is the best/correct/most efficient way to store a data series in XML

I have an application which will store a series of (float) values in an XML file. There could be upwards of 100,000 values so I am interested in keeping the size down, but I also want files to be ...
1
vote
2answers
53 views

split up xts-dataframe into several groups, collapse to weekly data and keep the time index

I am a total newbie to R so I apologize if the answer to my question is too obvious. I a data set of the following form: Date, V1,V...,VN,Land,Nace 22/03/1995 23:01:12,1,3,2,15,A 21/03/1995 ...
1
vote
2answers
101 views

Alternatives to the Dynamic Time Warping (DTW) method

I am doing some research into methods of comparing time series data. One of the algorithms that I have found being used for matching this type of data is the DTW (Dynamic Time Warping) algorithm. ...
1
vote
2answers
57 views

Plotting multiple series from file using Gnuplot

I've got a data file of the form: Series_1 "12-Dec-2011 12:00" 32 Series_1 "12-Dec-2011 12:01" 29 Series_1 "12-Dec-2011 12:02" 27 Series_1 "12-Dec-2011 12:04" 23 Series_2 "12-Dec-2011 12:01" 45 ...
1
vote
3answers
131 views

Avoiding Brute Force: Counting Solutions

In a programming contest, a problem was: Count all solutions to the equation: x + 4y + 4z = n. You will be given n and you will determine the count of solutions. Assume x, y and z are positive ...
1
vote
2answers
128 views

ASP.NET Chart add percentage next to the number

I have a chart control that is displaying columns with values on top (series with labels). Those values come from the database and they are already in the percentage format (i.e.: displaying 12.54 not ...
1
vote
1answer
128 views

Deleting empty Series out of Graph (with VBA)

I am trying to remove all empty series out of an Excel graph. Dim isEmptySeries As Boolean For Series = 1 To .SeriesCollection.count .SeriesCollection(Series).ApplyDataLabels ...
1
vote
1answer
29 views

Maxima: How to type a term of a complicated series

How do you type the following general term of a series in Maxima ?
1
vote
2answers
60 views

Date and financial data

I have a set of one year finacial data. The data is collected in working days. Is there any way in R to assign to each data point a date given that the first data point was collected for eaxmple on ...
1
vote
1answer
734 views

JFreechart series tool tip above shape annotation

I have an XYPlot on which are series and a couple of dynamically added shape annotations with no fill (hence each of the series points are visible). Is it possible to display the series tool tips(that ...
1
vote
1answer
244 views

JFreechart filling sectors series

I am trying to create a filled series over each region of a polar plot. But the colors are not filled out right. Here is an image of what I get: ...
1
vote
1answer
422 views

Adding vertical lines to a plot.ts() graph in R

I would like to add a vertical line to a plot.ts() graph: plot.ts(cbind(a, b, c, d, e, f, g, h),main="Time Series") a<-seq(1:16); b<-seq(1:16); c<-seq(1:16); d<-seq(1:16); ...
1
vote
2answers
69 views

Query sum speedup - Date series for charts

The following query runs fairly quickly, but the series processing that needs to take place afterwards is really slowing this method down. I could use some help in refactoring. def ...
1
vote
7answers
777 views

C# - 1 2 4 8 16 32 64… series - Find the indexes based on input number, recursive function?

I have a series of number as such: [1 2 4 8 16 32 64 128], if I input a number, i.e. 66, then the output should be 64 and 2. If I input 87, then the output should be 64, 16, 4, 2, 1. (Basically, it ...
1
vote
1answer
55 views

How do use the Series class to set a property for Restlet?

I want to set a restlet client to follow redirects. To do this I need to make a Context, set the Client to use the Context and then run it. However, to add the parameter: Parameter param = new ...
1
vote
2answers
168 views

segmentation fault in pi calculation (python)

def pi(times): seq = [] counter = 0 for x in range(times): counter += 2 seq.append("((%f**2)/(%f*%f))*"%(float(counter), float(counter-1), float(counter+1))) ...
1
vote
3answers
67 views

How to generate all possible values in an array where [x] >= [x+1]?

I'm attempting to write an algorithm that takes an array of size n and generating all possible combinations of integer values up to size max where the number in position x is greater than or equal to ...
1
vote
1answer
310 views

What is the most efficient data structure to store time series of partially changing array?

My problem is I have an array of objects of size N. after every time (t+1), some of the values of the array may or may not change. so lets say t+1 index 15 changes but everything else stays the same. ...
1
vote
1answer
938 views

Changing Default Colors of WPFToolkit Chart Control

Does anyone know how to or found any good examples of explicitly setting the color of the data points series when using the WPFToolkit chart control? I would like to set this as a style in my XAML.
1
vote
0answers
677 views

How to cluster time series data using K-means algorithm?

I am wondering how can I do clustering of time series data. I understand if the data is a point. But I do not know how to cluster if the data is time series with 1XM where M is the data length. ...
1
vote
1answer
126 views

How to apply patches on the top of a git tree preventing duplication?

I'm seeking advice for a problem that I thought to be simple, and it might be simple indeed by creating a small script, but I think there should already be a way to do that with git/quilt/stgit. I'm ...
1
vote
0answers
573 views

Silverlight 4 charting toolkit: how to create a custom series class?

I need to create a custom series class for the Silverlight 4 toolkit (April 2010 drop). There is a tutorial here: ...
1
vote
5answers
323 views

How can I create a series of months to join sparse data to?

I think this is a pretty common issue, but I don't know what the process is called, so I'll describe it with an example. The concept is that I want to join a sparse dataset to a complete series, such ...
1
vote
1answer
334 views

How to display two series via Google Chart API?

I can't get the two series of numbers to scale together. Here is sample code that you can paste into... http://code.google.com/intl/en/apis/chart/docs/chart_playground.html cht=lxy chs=400x300 ...
1
vote
1answer
132 views

Quarter as a Count variable in SAS

Hye Guys, I'm busy working on a time series and am trying to find the commands that allow me to insert a quarter count variable. To keep things simple, the third quarter of 1995 (date my observations ...
0
votes
0answers
28 views

Big theta geometric series

I have a question about geometric series why is 'g(n) = 1+c+c^2+....+c^n'' = Θ(c^n) if c>1 I understand why it is big-Θ(n) if c = 1 and it is big-Θ(1) if c <1. But I just can't figure out why it ...
0
votes
4answers
84 views

pseudo code to find the numbers which appear more than once in a list [closed]

I have a series like 1,2,199,100,8,100,199,1001,5,9 and I got to write a pseudo code to find out the numbers which appear more then once in the above list. I can clearly see that 199 and 100 appear ...
0
votes
1answer
63 views

Stacked grouped histogram HighCharts graphs with dynamic data using ASP.NET MVC3?

I'd like to make stacked&grouped histograms using HighCharts and ASP.NET MVC3. I found this example on HighCharts' site: http://www.highcharts.com/demo/column-stacked-and-grouped I would use ...
0
votes
0answers
13 views

Silverlight 4 Custom Chart Series

I have to create a Chart which looks like that, using Silverlight 4 Toolkit : I think I have to create a custom chart series. I've already seen this blog entry : ...

1 2 3