Why does my MATLAB Function block throw "index expression out of bounds" errors?

41 次查看(过去 30 天)
When using MATLAB Function blocks, if I try to access certain elements of the input parameter, I receive an error message similar to the following:
ERROR: Index expression out of bounds. Attempted to access element 2. The valid range is 1-1.
This is unexpected since I know that the input parameter is a vector, even though the error message states that it is a scalar.

采纳的回答

MathWorks Support Team
编辑:MathWorks Support Team 2021-10-20
Even though you have designed the model such that the input to the MATLAB Function block is a vector, you will receive this error message if Simulink cannot successfully propagate the signal widths to the MATLAB Function block input (in which case it defaults to a signal width of one). This can sometimes happen for MATLAB Function blocks that are inside a loop, where the output of the MATLAB Function block eventually feeds back to the input of the same MATLAB Function block.
Have a look at the attached example model ("example.mdl") to see a demonstration of this error message. To resolve the error, you need to add more information about the dimension of the signals in your model.
For example, in this case, you can do one of the following (this is not an exhaustive list of solutions):
1. Open the MATLAB Function block editor, and click Edit Data. Select the input variable "u", and set the Size to 3. See "solution1.mdl".
2. Place a Signal Specification block in the feedback path, explicitly telling the MATLAB Function block that this signal has a width of 3. See "solution2.mdl".

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Simulink Functions 的更多信息

标签

产品


版本

R2010a

Community Treasure Hunt

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

Start Hunting!

Translated by