linprog()

Mathematical Programming

linprog() is a MATLAB®-compatible mathematical programming function for linear programming via simlab's fuse-first browser stack: minimize f'*x subject to a*x <= b, aeq*x = beq, lb <= x <= ub. small/medium lps use fuse-lp when applicable, with highs fallback. returns {x, fval, exitflag, output}. Run it online in your browser with SimLab — free, no install, no license required.

Linear programming via SimLab's FUSE-first browser stack: minimize f'*x subject to A*x <= b, Aeq*x = beq, lb <= x <= ub. Small/medium LPs use FUSE-LP when applicable, with HiGHS fallback. Returns {x, fval, exitflag, output}.

Syntax

linprog(f, A, b)
linprog(f, A, b, Aeq, beq)
linprog(f, A, b, Aeq, beq, lb, ub)

Examples — run linprog() in your browser

% Minimize x+y subject to x+y >= 10
result = linprog([1, 1], [-1, -1], [-10])
▶ Run
% With bounds
result = linprog([1, 2], [1, 1], [5], [], [], [0, 0], [3, 3])
▶ Run

See Also

Frequently Asked Questions about linprog()

Is the linprog() function free to use in SimLab?

Yes. SimLab is 100% free — no signup, no license, and no usage limits. You can run linprog() and 510+ other MATLAB®-compatible functions directly in your browser at simulations4all.com/simlab.

Do I need to install MATLAB to use linprog()?

No. SimLab runs entirely in your web browser with zero installation. The linprog() function works without any MATLAB® license or software download.

What does linprog() do?

Linear programming via SimLab's FUSE-first browser stack: minimize f'*x subject to A*x <= b, Aeq*x = beq, lb <= x <= ub. Small/medium LPs use FUSE-LP when applicable, with HiGHS fallback. Returns {x, fval, exitflag, output}. It is a MATLAB®-compatible mathematical programming function available in SimLab with the same calling syntax as MATLAB® — typically: linprog(f, A, b).

Can I run linprog() in my browser?

Yes. Open SimLab at simulations4all.com/simlab, write or paste code that calls linprog(), and run it. Execution happens locally in your browser — no data leaves your machine.

Try SimLab — MATLAB®-compatible, free, in your browser

510+ functions. Runs in your browser. No install. No license.

Open SimLab

MATLAB® is a registered trademark of The MathWorks, Inc. SimLab is an independent project by Simulations4All and is not affiliated with, endorsed by, or sponsored by The MathWorks, Inc.

Stay Updated

Get notified about new simulations and tools. We send 1-2 emails per month.