How to measure time that fmincon takes to extract one solution from a NMPC running in Simulink
3 次查看(过去 30 天)
显示 更早的评论
I am running a Non-linear MPC at Simulink and I would like to know if it is possible to measure the computational time it takes for the fmincon to generate a solution for the controller per simulation time step. I have seen commands like tic/toc, cputime etc, but my issue is that I don't know a way that I could go "under the hood" and put these commands before and after fmincon.
If somebody knows, could you please help me?
1 个评论
Benotsmane Rabab
2022-11-5
By building your nonlinear controller, you need to create the object nlopc, when you excute your model, call this function:
t= timeit(nlopc(nx, ny, nu))
where nx, ny, nu are the numbers of states variables, outputes, and inputes of your controller.
回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Model Predictive Control Toolbox 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!