0
votes
2answers
76 views
How can I convert this ‘math model’ to php?
Hi, i have mathematical problem which I'm unable to convert to PHP or explain differently. Can somebody send my in the right direction?
I have two number which are in order (sequ …
3
votes
1answer
36 views
Optimization with Mathematica: Use BinCounts in Objective Function
Using Mathematica, I need to optimize a function that is defined in terms of BinCounts;
the arguments that I want to maximize over define the bin cutpoints.
I think the problem i …
3
votes
2answers
147 views
Single Precision Math Operations in .NET?
The .NET framework's Math functions mostly operate on double precision floats, there are no single precision (float) overloads. When working with single precision data in a high pe …
1
vote
4answers
158 views
What’s the most efficient way to detect triangle-triangle intersections ?
How can I tell whether two triangles intersect in 2D Euclidean space? (i.e. classic 2D geometry) given the (X,Y) coordinates of each vertex in each triangle.
10
votes
6answers
482 views
Is Big O(logn) log base e?
For binary search tree type of data structures, I see the Big O notation is typically noted as O(logn). With a lowercase 'l' in log, does this imply log base e (n) as described b …
6
votes
5answers
511 views
Best open source Mixed Integer Optimization Solver
I am using CPLEX for solving huge optimization models (more than 100k variables) now I'd like to see if I can find an open source alternative, I solve mixed integer problems (MILP) …
3
votes
2answers
172 views
Linear algebra library for the D programming language.
I'm looking for a package to do matrix math with matrices of up to about 100 x 100.
I need to, at a minimum, do inverses, multiplication and transposition. I'd prefer a more encap …
1
vote
7answers
132 views
Is there an iterative way to calculate radii along a scanline?
I am processing a series of points which all have the same Y value, but different X values. I go through the points by incrementing X by one. For example, I might have Y = 50 and …
7
votes
12answers
830 views
Why is squaring a number faster than multiplying two random numbers?
Multiplying two binary numbers takes n^2 time, yet squaring a number can be done more efficiently somehow. (with n being the number of bits) How could that be?
Or is it not poss …
0
votes
1answer
95 views
Optimizing points distance to sphere test.
I would like to test if a point is within a particular distance of a sphere.
So you have these variables...
Point3F spherePnt;
F32 sphereRadius;
Point3F testPnt;
I could do...
…
0
votes
2answers
1k views
Java Library? - Simplex / Linear Programming / Optimization
I'm looking for an optimization library. My two requirements are that it does not use JNI and that it does not have license restrictions preventing it from being used on multiple …
1
vote
2answers
130 views
How calculate minimal waste when tailoring tubes
I have a rather mathematical problem I need to solve:
The task is to cut a predefined number of tubes out of fixed length tubes with a minimum amount of waste material.
So let's …
0
votes
8answers
368 views
Parallelogram contains Point
What way is the fastest of deciding whether a point is inside a parallelogram/rhomboid?
0
votes
3answers
502 views
Optimization packages for R
Does anyone know of any optimization packages out there for R (similar to NUOPT for S+)?
Thanks
0
votes
2answers
193 views
room/timeslot schedule optimization
People can chose up to 5 of 25 lectures in advance. All these lectures are given on one day in five rooms at five time slots. Each (preferred) lecture a listener can attend to make …
