
Emmanouil Tzorakoleftherakis
Statistics
0 Preguntas
306 Respuestas
1 Archivo
CLASIFICACIÓN
135
of 273.145
REPUTACIÓN
836
CONTRIBUCIONES
0 Preguntas
306 Respuestas
ACEPTACIÓN DE RESPUESTAS
0.00%
VOTOS RECIBIDOS
84
CLASIFICACIÓN
12.836 of 18.447
REPUTACIÓN
20
EVALUACIÓN MEDIA
0.00
CONTRIBUCIONES
1 Archivo
DESCARGAS
2
ALL TIME DESCARGAS
171
CLASIFICACIÓN
of 122.560
CONTRIBUCIONES
0 Problemas
0 Soluciones
PUNTUACIÓN
0
NÚMERO DE INSIGNIAS
0
CONTRIBUCIONES
0 Publicaciones
CONTRIBUCIONES
0 Público Canales
EVALUACIÓN MEDIA
CONTRIBUCIONES
0 Temas destacados
MEDIA DE ME GUSTA
Content Feed
Does Simulink Coder support code generation of custom solver functions for Nonlinear MPC blocks?
Hi Arnold, Unfortunately, right now you can only generate code using 'fmincon'. Custom nlp solvers can currently only be used f...
4 días hace | 0
| aceptada
Invalid size or type for observation specification. Simulink Environment for Reinforcement Learning
I had a look at the attached zip. The error is on line 33 in 'Tentativo1.m'. This line should be mdl = 'RL'; % make sure your ...
4 días hace | 0
Error while training a two-agent environment: Action specification of agent at index 2 incompatible with environment
The issue seems to be that the action specifications do not match what the environment model expects. Whether you are using Simu...
4 días hace | 0
Using MPC Designer App with Plant Dynamics Model containing multiple Sign blocks
It seems like you have some kind of switched system (?). If that's the case, maybe try to linearize each dynamic model/"sign" se...
4 días hace | 0
constraint on action space somehow that each action can be chosen only once
Unfortunately, this is not possible as of R2022b out of the box. You would need to create a custom agent to implement this behav...
4 días hace | 0
Extended Kalman Filter state transition parameters
Glad you figured it out. By the way, this example shows the general workflow of using NLMPC + EKF with additional parameters
4 días hace | 0
RL Stop training criteria
I believe that for event-based training, you need to adjust your stopping/saving criteria accordingly. For example the agent wil...
5 días hace | 0
How to adjust internal sample time of MPC?
There is a way to do that, but first you need to consider whether you actually need to run your MPC controller that fast. As you...
5 días hace | 0
| aceptada
Transfer a variable at the end of one episode to the next episode when training an agent in RL
The way to do this would be using the reset function mechanism provided in Reinforcement Learning Toolbox. Please take a look at...
5 días hace | 0
DDPG Agent: Noise settings without any visible consequence
Your standard deviation is very high compared to the action range that you have set. As a result, when noise is added to the tan...
5 días hace | 0
Reinforcement learning agent stops training unexpectedly?
The picture also mentioned why training stopped in the last two rows. In this case, it seems you have a criterion that stops tra...
5 días hace | 0
Reinforcement learning unable to dupilcapte the best reward i had during training
Just because the reward of a single episode meets the desired performance, this does not mean that when you stop ttraining you s...
5 días hace | 0
Triggering an action of an RL agent in a Simulink environment (SimEvents) via event
As of R2022a you can train reinforcement learning agents with event-based simulations. Please take a look at the release notes h...
6 días hace | 0
Agent diverge after converge usingTD3
Please see answer here. This behavior could happen if the optimization moves to explore a different direction. I would suggest s...
6 días hace | 0
Use of RL Agent instead of PID
Here is an example that does exactly what you mentioned, i.e. replaces a PID controller with an RL Agent
6 días hace | 0
My agent finds a good solution but it does not repeat it and turns back to bad behavior again (Reinforcement Learning )
This picture shows progress for a very small number of episodes. You should wait for a few hundred episodes before you can evalu...
6 días hace | 0
Oscillating reward in DDPG using Matlab Reinforcement learning toolbox with simulink environment
I think I have mentioned this in another post as well, but you should not expect your episode reward to be monotonic. Once it "c...
6 días hace | 0
How to Use the Reinforcement Learning Toolbox to Draw Observations While Training?
You can use the information on plotting and visualization from this page to plot/visualize information during training
6 días hace | 0
Determine the reward value to stop training in RL agent
For some problems you may be able to calculate what the maximum reward that can be collected in an episode is, so you can use th...
6 días hace | 0
| aceptada
How to assign values to MV Targets of MPC object from cell array
You could specify values individually mpcobj.MV(1).Target=99; mpcobj.MV(2).Target=10; or you could do it in one line as follo...
6 días hace | 0
| aceptada
problem with MPC controller
It seems to me that the solution is to add a constraint on the rate of change of the manipulated variable Ic. That way you can a...
6 días hace | 0
How can I have 'measured states' in a MPC controller object in Simulink?
Model Predictive Control Toolbox includes built-in Kalman filters for the linear MPC API and blocks. So you really don't need to...
6 días hace | 0
| aceptada
Question about using the nonlinear model predictive control toolbox
nlmpcmove function uses fmincon from Optimization Toolbox. Pleaase take a look at this doc page for more details
6 días hace | 0
Adaptive MPC for LPV systems
This is possible with Model Predictive Control Toolbox yes, please take a look at this example.
6 días hace | 0
Is it possible to pass simulink NMPC parameters as struct?
Please take a look at my answer here
6 días hace | 0
| aceptada
Get nonlinear model from Simulink to Matlab
Hi Daniel, Unfortunately Model Predictive Control Toolbox does not currently support using a Simulink model directly as a predi...
6 días hace | 0
| aceptada
Binary Manipulated Variable in NLMPC
Unfortunately Model Predictive Control Toolbox does not currently support mixed-integer problems for NLMPC.
6 días hace | 0
Import Timeseries on Simulink as raw structure and not as single data samples at certain simulation time
It seems to me that you want to implement the MPC preview capability in Simulink. This example actually has a custom previewer b...
6 días hace | 0
NLMPC state function parameters
Hi, Given that it is not possible to package all variables into a struct and feed them into the MPC controller that way (it's n...
7 días hace | 0
| aceptada