# Simplex tableau from Gurobi

**URL:** https://discourse.julialang.org/t/simplex-tableau-from-gurobi/121080
**Category:** Optimization (Mathematical)
**Tags:** jump
**Created:** [October 9, 2024, 3:53am UTC](https://discourse.julialang.org/t/simplex-tableau-from-gurobi/121080 "2024-10-09T03:53:51Z")
**Posts on this page:** 2
**Page:** 1

<div class="post-metadata">

### Author: ![wahadhasan](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/wahadhasan/32/207949_2.png) [@wahadhasan](https://discourse.julialang.org/u/wahadhasan)
#### Post date: [October 9, 2024, 3:53am UTC](https://discourse.julialang.org/t/simplex-tableau-from-gurobi/121080/1 "2024-10-09T03:53:51Z")

</div>

Hi there, is there anyway to get the optimal simplex tableau from Gurobi? I checked this link (CPLEX) but unfortunately could not reach to the tableau it supposed to be. Any suggestions will be of great help.

[Gather Optimal Tableau Information using CPLEX.jl - Specific Domains / Optimization (Mathematical) - Julia Programming Language (julialang.org)](https://discourse.julialang.org/t/gather-optimal-tableau-information-using-cplex-jl/101331)

---

<div class="post-metadata">

### Author: ![odow](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/odow/32/28685_2.png) [@odow](https://discourse.julialang.org/u/odow)
#### Post date: [October 9, 2024, 4:33am UTC](https://discourse.julialang.org/t/simplex-tableau-from-gurobi/121080/2 "2024-10-09T04:33:23Z")

</div>

See this tutorial for working with solver-independent basis functions: [Basis matrices · JuMP](https://jump.dev/JuMP.jl/stable/tutorials/linear/basis/)

You might also be interested in [Sensitivity analysis of a linear program · JuMP](https://jump.dev/JuMP.jl/dev/tutorials/linear/lp_sensitivity/)

Does that achieve what you need?

Otherwise, you’ll need to use Gurobi’s C API: [GitHub - jump-dev/Gurobi.jl: A Julia interface to the Gurobi Optimizer](https://github.com/jump-dev/Gurobi.jl/tree/master?tab=readme-ov-file#c-api)

It’ll be easier to help if you can provide a minimal reproducible example of what you’re trying to achieve.
