By Sanjoy Layek
It is a Simplex equation solver project using JavaScript programming language where one can enter the simplex equation and the program will output the results in tabular format.
Simplex Method is to get the optimal solution to a linear programming problem.
It is takes in the contraints as
for ex:-
let constraint equations = [
[-1,2,14,'<='],
[3,2,14,'<='],
[1,-1,3,'<='] ].
And prints the output in table format if the equation is solvable.
The Simplex Methods is solved by:-
Submitted by Sanjoy Layek (layeksanjoy)
Download packets of source code on Coders Packet
Comments