Predict block did not update
2 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Hi!
I am learning thi Imitate MPC example https://www.mathworks.com/help/reinforcement-learning/ug/imitate-mpc-controller-for-lane-keeping-assist.html and apply it in Simulink. I am using Predict block to run the trained dlNetwork in Simulink. However, the output of the Predict block is not updated for every time step. The output stays constant throughout simulation. Can someone help me with this?
Thank you!
2 Commenti
Risposta accettata
Gayathri
il 23 Set 2024
I understand that you are trying to model the “MPC” example in Simulink and the output of “predict” block in the model is not updating. I also faced a similar issue.
The output of “state space” block in Simulink does not produce the desired result as required in the example, which is to calculate “A*xk + B*[uk; Vx*rho]”.
Instead, it is better to model this equation manually using “matrix multiplication” and “adder”. You can model the same as shown below.
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/1777810/image.png)
You can find more information about “state-space” block in the following link,
Also, in the “AI control” part of the model, I think the constant which goes as input to the “predict” block must be “rho” instead of “Vx”.
For more information about the example, please refer to the below link.
Hope you find this information helpful.
0 Commenti
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Linear Plant Specification in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!