python (65.2k questions)
javascript (44.3k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (13k questions)
What's the most efficient way to create a diagonal matrix with ojalgo?
Is there something like Primitive64Matrix.FACTORY.makeDiagonal(double...)? I couldn't find anything like that in
https://www.ojalgo.org/code-examples/
I was hoping not to do Primitive64Matrix.FACTORY....
mchen
Votes: 0
Answers: 1
How do one solve linear programming problems with ojAlgo?
I am trying to learn how to solve a linear programming problem and I want to use ojAlgo LinearSolver.
I solve the equality constraints using a SolverTask and get a single feasible point. Nice!
Then I...
Magnus
Votes: 0
Answers: 1
How to encourage a balanced solution in ojAlgo ExpressionBasedModel
I have the following model:
ExpressionsBasedModel model = new ExpressionsBasedModel();
Variable va = model.addVariable("va")
.lower(0);
Variable vb ...
elcheapogary
Votes: 0
Answers: 1