Error:Brace indexing is not supported for variables of this type.
2 views (last 30 days)
Show older comments
Nathaniel Goldfarb
on 15 Jul 2021
Commented: Fangjun Jiang
on 30 Jul 2021
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 Comments
Walter Roberson
on 15 Jul 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.
Accepted Answer
Fangjun Jiang
on 30 Jul 2021
Edited: Fangjun Jiang
on 30 Jul 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 Comments
Fangjun Jiang
on 30 Jul 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.
More Answers (0)
See Also
Categories
Find more on Manual Performance Optimization in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!