intlinprog()
Mathematical Programming
intlinprog() is a MATLAB®-compatible mathematical programming function for mixed-integer linear programming via simlab's browser mip stack: minimize f'*x where x(intcon) are integer. the runtime uses fuse-specialized paths when applicable, with highs fallback for general milp. intcon is a vector of 1-based indices of integer variables. Run it online in your browser with SimLab — free, no install, no license required.
Mixed-integer linear programming via SimLab's browser MIP stack: minimize f'*x where x(intcon) are integer. The runtime uses FUSE-specialized paths when applicable, with HiGHS fallback for general MILP. intcon is a vector of 1-based indices of integer variables.
Syntax
intlinprog(f, intcon, A, b)
intlinprog(f, intcon, A, b, Aeq, beq, lb, ub)
Examples — run intlinprog() in your browser
% Binary knapsack: maximize value, weight <= 15 result = intlinprog([-10, -8, -6], [1, 2, 3], [5, 4, 3], [15], [], [], [0,0,0], [1,1,1])▶ Run
See Also
More Mathematical Programming Functions
Browse other free, MATLAB®-compatible mathematical programming functions in SimLab:
Frequently Asked Questions about intlinprog()
Is the intlinprog() function free to use in SimLab?
Yes. SimLab is 100% free — no signup, no license, and no usage limits. You can run intlinprog() and 510+ other MATLAB®-compatible functions directly in your browser at simulations4all.com/simlab.
Do I need to install MATLAB to use intlinprog()?
No. SimLab runs entirely in your web browser with zero installation. The intlinprog() function works without any MATLAB® license or software download.
What does intlinprog() do?
Mixed-integer linear programming via SimLab's browser MIP stack: minimize f'*x where x(intcon) are integer. The runtime uses FUSE-specialized paths when applicable, with HiGHS fallback for general MILP. intcon is a vector of 1-based indices of integer variables. It is a MATLAB®-compatible mathematical programming function available in SimLab with the same calling syntax as MATLAB® — typically: intlinprog(f, intcon, A, b).
Can I run intlinprog() in my browser?
Yes. Open SimLab at simulations4all.com/simlab, write or paste code that calls intlinprog(), 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 SimLabMATLAB® 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.