How to Solve Linear programming problem using DotNumerics?
I'm really interested in numerical analysis. I have been using DotNumerics Open Source Application. My linear system is the following: 1 * x + 3 * y <= 150 2 * x + 1 * y <= 100 where x >= 0, y >= 0 z = 10 * x + 15 * y I am trying to solve z (optimization...) I can use Simplex method to solve above problem as found in this link . I have also emailed the author, however he has not replied. using DotNumerics.Optimization; using DotNumerics; namespace App.SimplexCalcLinearProgramming { class Program { static void Main(string[] args) { Simplex simplex = new Simplex(); double[] initialGuess = new