Matlab code works fine as m file but doesn't work when it's called in a Matlab function block in Simulink

3 次查看(过去 30 天)
Hi, I'm using a matlab function code (waypoints.m) to generate an array of waypoints. The input arguments are the starting and ending points as two [1x3] arrays. The code works fine when I run it in the editor. But when I create a Simulink Matlab function block, I call the function (waypoints.m) in it, and I input the starting and ending points as two [1x3] arrays in constant blocks, I always get this error repeated in some parts of the code
"Index expression out of bounds. Attempted to access element 3. The valid range is 1-1"
Any help ?

回答(1 个)

Walter Roberson
Walter Roberson 2018-1-20
I suspect that the code attempts to grow a vector dynamically after having assigned a scalar to it. In MATLAB Function Block you cannot grow dynamically without taking extra steps. Instead the first assignment to the variable should be be something that is the largest size that the variable will need.
The error could also potentially occur if you tried to reuse a variable, assigning a vector of length 3 after it was originally a scalar.
  11 个评论
Walter Roberson
Walter Roberson 2018-1-20
The problem (or at least one of them) is in durbins_core which has
test_param(1,:) = dubins_LSL(alpha, beta, d);
test_param(2,:) = dubins_LSR(alpha, beta, d);
test_param(3,:) = dubins_RSL(alpha, beta, d);
test_param(4,:) = dubins_RSR(alpha, beta, d);
test_param(5,:) = dubins_RLR(alpha, beta, d);
test_param(6,:) = dubins_LRL(alpha, beta, d);
without having initialized test_param first. Because the first assignment determines the size, the size is determined to be 1 row. If you move the last assignment (highest index) to be first then that problem would be bypassed.

请先登录,再进行评论。

类别

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

Community Treasure Hunt

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

Start Hunting!

Translated by