5
votes
6answers
450 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<st …
0
votes
7answers
104 views
Grouping data points into series
I have a series of data points (tuples) in a list with a format like:
points = [(1, 'a'), (2, 'b'), (2, 'a'), (3, 'd'), (4, 'c')]
The first item in each tuple is an integer and …
7
votes
3answers
524 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 …
0
votes
1answer
190 views
Excel C# Com Chart Multiple Series Problem
Hello All,
Please can someone help me with this as it's driving me nuts!
I'm creating an excel chart using C# and the COM interface pragmatically.
I've created the chart using t …
0
votes
1answer
193 views
cannot load custom tooltips in silverlight
Hi,,
I have created a custoom tooltip for a lineseries chart. however my problem is that this custom tooltip is never loaded..(I still get the default tooltip i.e. X-value) …
0
votes
1answer
139 views
How to do I change a Series color in Excel using C#?
I have written a program in C# whereby it automatically generates a graph for me from a CSV file and puts it onto a new XLS file. However, I need to change the color of the Line (a …
0
votes
3answers
48 views
Generate all the continous intervals from a series
I have this problem I can't quite solve. I can get the missing numbers interval, but I can't piece them back together to from my continous series.
So if I have a series defined as …
0
votes
2answers
853 views
Flex bar chart label function with multiple series?
Hello all,
I have a Flex bar chart with two data series in a clustered format. The series are called RequiredFunding and ApprovedFunding, so they're plotted next to each other. …
10
votes
10answers
918 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, …
0
votes
1answer
226 views
WMEncoder issue
I have an instance of a WMEncoder class
THis is .NET so basic interop , what I mean is the WMEncoder is actually generated by the runtime like so
namespace WMEncoderLib
{
…
0
votes
7answers
109 views
Find the last value in a “rolled-over” sequence with a stored procedure?
Suppose I had a set of alpha-character identifiers of a set length, e.g. always five letters, and they are assigned in such a way that they are always incremented sequentially (GGG …
0
votes
1answer
58 views
Optional series in a SSRS chart?
Hi, is it possible to make a series in a chart optional (i.e. only rendered when the user clicks a checkbox, in case the corresponding query takes a while and may not be required)? …
