Error:Brace indexing is not supported for variables of this type.

3 visualizaciones (últimos 30 días)
I am using the Responce optmization toolbox to optmize my controller and I am getting the following error:
=== Design Optimization (Elapsed: 0.253 sec) ===
Error:Brace indexing is not supported for variables of this type.
What I dont understand is the model will run for a while and succesful test different parameters. I can monitor the output and the convergres of the system. Then it will just throw the above error at some point. What is cauing this error. It would really help if it told me where this is occuring so I can track the error.
  2 comentarios
Walter Roberson
Walter Roberson el 15 de Jul. de 2021
I am not familiar with that tool, so I can only speak in generalities:
The kind of behaviour you describe can appear in cases where an output becomes empty when the code does not expect that as a possibility. There are cases where a cell array or table or string would be the expected outcome, but in which empty outcome is [] instead of empty cell or empty table or empty string. If the code then assumes that it can {} index the output than fails because [] is numeric and numeric cannot be {} indexed.
Such code needs an isempty() test added.
There are cases where algebraically the code should be fine, but because of floating point round-off, "The Law Of The Excluded Middle" fails to hold.
Nathaniel Goldfarb
Nathaniel Goldfarb el 30 de Jul. de 2021
Right but how can I nail down exactly where the error is happening? The stack trace is terrible.

Iniciar sesión para comentar.

Respuesta aceptada

Fangjun Jiang
Fangjun Jiang el 30 de Jul. de 2021
Editada: Fangjun Jiang el 30 de Jul. de 2021
Run "dbstop if error" in MATLAB Command Window first and then run your optimization. Hopefully you will be able to see the line of the source code when the error happens.
  2 comentarios
Nathaniel Goldfarb
Nathaniel Goldfarb el 30 de Jul. de 2021
Do I just have to run "dbstop if error" window then hit the optmize button?
Should I close the Simulink model and/or the optmizizer first?
Fangjun Jiang
Fangjun Jiang el 30 de Jul. de 2021
If the error pops up at the Simulink diagnostic window, you may not be able to see where in the source the error happened. But try it anyway.

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Simulink Functions en Help Center y File Exchange.

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by