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

3 visualizzazioni (ultimi 30 giorni)
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 Commenti
Walter Roberson
Walter Roberson il 15 Lug 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 il 30 Lug 2021
Right but how can I nail down exactly where the error is happening? The stack trace is terrible.

Accedi per commentare.

Risposta accettata

Fangjun Jiang
Fangjun Jiang il 30 Lug 2021
Modificato: Fangjun Jiang il 30 Lug 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 Commenti
Nathaniel Goldfarb
Nathaniel Goldfarb il 30 Lug 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 il 30 Lug 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.

Accedi per commentare.

Più risposte (0)

Categorie

Scopri di più su Simulink Functions 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!

Translated by