13
votes
11answers
7k views
Algorithm to calculate the number of divisors of a given number
What would be the most optimal algorithm (performance-wise) to calculate the number of divisors of a given number?
It'll be great if you could provide pseudocode or a link to some example.
EDIT: All …
0
votes
2answers
70 views
Least squares optimal scaling
Hi,
I have two waveforms which are linked by a numerical factor. I need to use optimal scaling (least squares) between the two waveforms to calculate this factor in Matlab. Unfortunately I have no …
2
votes
8answers
216 views
Which is optimal ?
Is declaring a variable inside a loop is good or declaring on the fly optimal in Java.Also is there any performance cost involved while declaring inside the loop?
eg.
Option 1: Outside the Loop
…
1
vote
4answers
130 views
Optimal solution for non-overlapping maximum scoring sequences
While developing part of a simulator I came across the following problem. Consider a string of length N, and M substrings of this string with a non-negative score assigned to each of them. Of …
0
votes
1answer
65 views
Is there an optimal way to render images in cocoa? Im using setNeedsDisplay.
Currently, any time I manually move a UIImage (via handling the touchesMoved event) the last thing I call in that event is [self setNeedsDisplay], which effectively redraws the entire view.
My images …
0
votes
1answer
148 views
Is CollectionViewSource in WPF optimal?
Many WPF examples use CollectionViewSource as DataSource for DataBinding. It provides sorting and other useful functions. My question is, shouldn't this be done in Database? I mean in SQL? I bet it's …
3
votes
2answers
109 views
Optimal xml storage engine
I'm considering optimal open source solution for storing xml documents with further querying on them effectively. Amount of data will be small. As far as I understand native xml databases might form a …
4
votes
14answers
328 views
So many ways to code one thing, deciding what’s best?
Have you ever been in a situation where you code something and then find yourself wondering if you did it the best way. So you end up coding another way, and then find yourself again asking if you …
5
votes
4answers
220 views
live asp.net web.config settings
I've only recently started working with asp.net and c#. Is there a standard practice set of web.config settings for a live final website? There seem to be a ton of options available and I'm looking to …
