Subtopic Deep Dive

Convex Optimization in Control Toolboxes
Research Guide

What is Convex Optimization in Control Toolboxes?

Convex Optimization in Control Toolboxes develops MATLAB/YALMIP and SeDuMi solvers for semidefinite and second-order cone programs to enable robust control synthesis, state estimation, and system identification.

This subtopic focuses on toolboxes like YALMIP with SeDuMi for formulating control problems as convex optimizations solved via linear matrix inequalities (LMIs). Key applications include LPV systems MPC (Bumroongsri and Kheawhom, 2012, 20 citations) and robust output-feedback LQR (Ilka, 2018, 12 citations). Over 10 papers from 2010-2022 demonstrate scalable implementations with 7-41 citations each.

15
Curated Papers
3
Key Challenges

Why It Matters

Toolboxes enable engineers to design robust controllers for fault estimation in LPV systems (Rotondo et al., 2016, 41 citations) and scalable tube MPC using ellipsoidal sets (Parsi et al., 2022, 14 citations). Industrial applications span high-speed embedded controllers to utility systems (Currie, 2014, 7 citations). These tools reduce design time for automotive and aerospace control, with structurable LQR toolboxes bridging theory to practice (Ilka, 2018, 12 citations).

Key Research Challenges

Scalable Uncertainty Modeling

Representing dynamic uncertainties in linear fractional forms increases LMI complexity for real-time MPC (Parsi et al., 2022). Tube MPC with ellipsoidal sets addresses this but requires predefined set complexity (Gupta et al., 2020, 13 citations). Balancing conservatism and computation remains open.

Explicit MPC Approximation

Piecewise affine laws from explicit MPC grow prohibitively complex for fast systems (Genuit et al., 2012, 21 citations). Regular PWA approximations preserve input-to-state stability but demand efficient partitioning. Toolbox solvers like YALMIP must handle high-dimensional polytopes.

Parameter-Dependent Stability

LPV MPC relies on parameter-dependent Lyapunov functions, perturbed by control inputs (Bumroongsri and Kheawhom, 2012, 20 citations). Ensuring robustness across operating ranges challenges SeDuMi scalability. Infinite-horizon constraints add to LMI size (Zabala and Costa, 2020, 14 citations).

Essential Papers

1.

Actuator multiplicative fault estimation in discrete-time LPV systems using switched observers

Damiano Rotondo, Francisco‐Ronay López‐Estrada, Fatiha Nejjari et al. · 2016 · Journal of the Franklin Institute · 41 citations

2.

Approximation of explicit model predictive control using regular piecewise affine functions: an input-to-state stability approach

B.A.G. Genuit, Liang Lu, W.P.M.H. Heemels · 2012 · IET Control Theory and Applications · 21 citations

Piecewise affine (PWA) feedback control laws defined on general polytopic partitions, as for instance obtained by explicit MPC, will often be prohibitively complex for fast systems. In this work we...

3.

MPC for LPV Systems Based on Parameter-Dependent Lyapunov Function with Perturbation on Control Input Strategy

Pornchai Bumroongsri, Soorathep Kheawhom · 2012 · Engineering Journal · 20 citations

In this paper, the model predictive control (MPC) algorithm for linear parameter varying (LPV) systems is proposed. The proposed algorithm consists of two steps. The first step is derived by using ...

4.

Variable horizon model predictive control: robustness and optimality

Rohan C. Shekhar · 2012 · Apollo (University of Cambridge) · 17 citations

Variable Horizon Model Predictive Control (VH-MPC) is a form of predictive control that includes the horizon length as a decision variable in the constrained optimisation problem solved at each ite...

5.

Scalable tube model predictive control of uncertain linear systems using ellipsoidal sets

Anilkumar Parsi, Andrea Iannelli, Roy S. Smith · 2022 · International Journal of Robust and Nonlinear Control · 14 citations

Abstract This work proposes a novel robust model predictive control (MPC) algorithm for linear systems affected by dynamic model uncertainty and exogenous disturbances. The uncertainty is modeled u...

6.

Static Output Constrained Control for Discrete-Time Hidden Markov Jump Linear Systems

Yeison Andres Zabala, O.L.V. Costa · 2020 · IEEE Access · 14 citations

This paper studies the static output quadratic control problem of discrete-time Markov jump linear systems (MJLS) with hard constraints on the norm of the state and control variables. Both cases th...

7.

A Concise Review of State Estimation Techniques for Partial Differential Equation Systems

Ivan Francisco Yupanqui Tello, Alain Vande Wouwer, Daniel Coutinho · 2021 · Mathematics · 13 citations

While state estimation techniques are routinely applied to systems represented by ordinary differential equation (ODE) models, it remains a challenging task to design an observer for a distributed ...

Reading Guide

Foundational Papers

Start with Genuit et al. (2012) for PWA MPC basics and stability; Bumroongsri and Kheawhom (2012) for LPV Lyapunov methods; Ilka (2018) for practical YALMIP/SeDuMi LQR toolbox implementation.

Recent Advances

Parsi et al. (2022) for scalable tube MPC; Gupta et al. (2020) for complexity-bounded RCI sets; Rotondo et al. (2016) for fault estimation observers.

Core Methods

YALMIP modeling with SeDuMi for LMIs/SDPs; parameter-dependent Lyapunov functions; ellipsoidal sets and polytopic partitions; robust MPC via min-max optimization.

How PapersFlow Helps You Research Convex Optimization in Control Toolboxes

Discover & Search

Research Agent uses searchPapers('YALMIP SeDuMi control toolbox') to find Ilka (2018) structurable LQR toolbox, then citationGraph to map 12 citing works on robust output-feedback, and findSimilarPapers to uncover Parsi et al. (2022) tube MPC extensions.

Analyze & Verify

Analysis Agent applies readPaperContent on Rotondo et al. (2016) to extract LPV observer LMIs, verifyResponse with CoVe against Genuit et al. (2012) stability proofs, and runPythonAnalysis to simulate ellipsoidal sets from Parsi et al. (2022) with NumPy for set volume computation; GRADE scores LMI feasibility claims.

Synthesize & Write

Synthesis Agent detects gaps in scalable RCI sets post-Gupta et al. (2020), flags contradictions in VH-MPC optimality (Shekhar, 2012); Writing Agent uses latexEditText for LQR toolbox docs, latexSyncCitations with Ilka (2018), latexCompile for MPC reports, and exportMermaid for Lyapunov function diagrams.

Use Cases

"Reproduce Python code for tube MPC ellipsoids from Parsi 2022"

Research Agent → paperExtractUrls → Code Discovery → paperFindGithubRepo → githubRepoInspect → runPythonAnalysis (NumPy ellipsoid ops) → matplotlib plot of robust invariant sets.

"Draft LaTeX report on YALMIP LQR toolbox for LPV fault estimation"

Synthesis Agent → gap detection (Rotondo 2016 + Ilka 2018) → Writing Agent → latexEditText (add LMI sections) → latexSyncCitations → latexCompile → PDF with SeDuMi solver benchmarks.

"Find GitHub repos implementing explicit MPC approximation"

Research Agent → searchPapers('Genuit explicit MPC 2012') → Code Discovery → paperFindGithubRepo → githubRepoInspect → exportCsv (repo metrics, PWA code snippets) → runPythonAnalysis for stability verification.

Automated Workflows

Deep Research workflow scans 50+ papers via searchPapers on 'convex control toolbox YALMIP', chains citationGraph → findSimilarPapers → structured report on LMI evolution from Bumroongsri (2012) to Parsi (2022). DeepScan applies 7-step CoVe to verify Ilka (2018) toolbox claims against Currie (2014) industrial benchmarks. Theorizer generates new LQR structures from synthesis of Gupta (2020) RCI sets and Shekhar (2012) VH-MPC.

Frequently Asked Questions

What defines Convex Optimization in Control Toolboxes?

Development of MATLAB/YALMIP and SeDuMi for SDPs and SOCPs targeting robust control, estimation, and identification via LMIs.

What methods dominate this subtopic?

LMIs for parameter-dependent Lyapunov functions (Bumroongsri and Kheawhom, 2012), ellipsoidal tube MPC (Parsi et al., 2022), and polytopic RCI sets (Gupta et al., 2020) solved by SeDuMi.

Which papers set the foundation?

Genuit et al. (2012, 21 citations) on PWA MPC approximation; Bumroongsri and Kheawhom (2012, 20 citations) on LPV MPC; Shekhar (2012, 17 citations) on VH-MPC; Ilka (2018, 12 citations) on LQR toolbox.

What open problems persist?

Scalable real-time explicit MPC for high-dimensional systems; less conservative uncertainty tubes beyond ellipsoids; distributed optimization toolboxes for large-scale control (Massioni, 2010).

Research Advanced Control Systems Optimization with AI

PapersFlow provides specialized AI tools for your field researchers. Here are the most relevant for this topic:

Start Researching Convex Optimization in Control Toolboxes with AI

Search 474M+ papers, run AI-powered literature reviews, and write with integrated citations — all in one workspace.