Matlab code works fine as m file but doesn't work when it's called in a Matlab function block in Simulink
Show older comments
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 ?
Answers (1)
Walter Roberson
on 20 Jan 2018
0 votes
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 Comments
Islam Elnady
on 20 Jan 2018
Islam Elnady
on 20 Jan 2018
Walter Roberson
on 20 Jan 2018
The programming language for MATLAB Function Block is not the same as the programming language outside of those. In MATLAB it is completely acceptable to use
A = 5;
A = uint8(8:10) ;
But inside function blocks the data type of a variable cannot change and normally the size cannot increase beyond the size of the first assignment to the variable.
MATLAB Function Block is primarily for use with generating code for systems that do not have dynamic memory allocation, so Simulink wants to know hard maximum sizes so it can allocate memory on stack frames complete with checking that the call will not overflow the memory of the embedded system. Do not think of it as being Simulink just happening to call a MATLAB function: you have to understand it in a code generation context where it needs to worry about stack overflow and buffer overflow.
Islam Elnady
on 20 Jan 2018
Walter Roberson
on 20 Jan 2018
waypoints.m appears to be your own code. If you post it then we can give you some more specific tips on how it needs to be changed.
Islam Elnady
on 20 Jan 2018
Islam Elnady
on 20 Jan 2018
Edited: Walter Roberson
on 20 Jan 2018
Walter Roberson
on 20 Jan 2018
I looked at the github source for that but I do not see any waypoints.m there ?
Islam Elnady
on 20 Jan 2018
Edited: Islam Elnady
on 20 Jan 2018
Walter Roberson
on 20 Jan 2018
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.
Islam Elnady
on 20 Jan 2018
Categories
Find more on Simulink Coder 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!