Tagged Questions

0
votes
1answer
61 views

Equations Solver function in Matlab. How do I handle [eqns,vars] = getEqns(varargin{:}) errors?

I am using Matlab and am using its solve function. I run this code and I keep getting this error [eqns,vars] = getEqns(varargin{:}) I realized I had some parens issues and fixed t …
0
votes
1answer
39 views

Running Excel Solver Macro in Coldfusion

Hi guys, I'm trying to run the excel solver in Coldfusion. However i'm running into issues like, the page hangs as if loading forever, similar to this. Is it possible to run exce …
3
votes
4answers
173 views

How to solve a system of inequalities?

I've reduced my problem (table layout algorithm) to the following problem: Imagine I have N variables X1, X2, ..., XN. I also have some (undetermined) number of inequalities, like …
0
votes
1answer
274 views

Excel Solver not obeying binary constraint

I created a model in Excel to use in conjunction with Solver. It mostly works. The only problem is that Solver is not really treating the cells constrained as binary properly. When …
4
votes
4answers
319 views

Game solving algorithm (Buttonia, lights-out variant)

I am trying to create a solvability function for a game algorithm. Basically a function that returns true or false for a given game it if is solvable or not. The game is Buttonia. …
0
votes
1answer
174 views

Calling Excel Solver VBA from another worksheet

After creating a new workbook, I am trying to solve a newly created worksheet of this workbook in VBA. Despite of activating the new worksheet, Solver attempts to solve the worksh …
5
votes
5answers
384 views

Efficient way of Solving Cryptarithms

Hi i came across this puzzle which is a subset of famous kind of word and numbers based puzzles called Cryptarithms. Say you have an expression as S E N D + M O R E = M O N E Y …
0
votes
2answers
493 views

Rearrange equations for solver

Hi guys, I am looking for a generic python way to manipulate text into solvable equations. For example: there may be some constants to initialize e1,e2=0.58,0.62 ma1,ma2=0.85,1 …
1
vote
0answers
152 views

Opinions on Microsoft Solver Foundation?

I looking into options for a linear and non-linear programming (optimization) framework. Requirements are: Support linear and non-linear programming problems with approx. 100-10 …
1
vote
7answers
664 views

Does anyone know a better alternative to MS Excel’s Solver?

My company has to crunch a lot of data and part of the process involves running the solver and plotting a graph through resulting data points. Obviously there is a lot of copy and …
3
votes
10answers
1k views

Equation Solvers for C++

I need to solve a few mathematical equations in my application. Here's a typical example of such an equation: a + b * c - d / e = a Additional rules: b % 10 = 0 b >= 0 b <= …
1
vote
1answer
166 views

QP solver for Java

I'm looking for a good easy to use Java based Quadratic Programming (QP) solver. Googling around I came across ojAlgo (http://ojalgo.org). However, I was wondering if there are …
3
votes
6answers
390 views

Fast FEM Solvers

What are the fast solvers for FEM equations? I would prefer open source implementation, but if there is a commercial implementation, then I won't mind paying for it.