Illegal use of 'end' in Simulink Coder when copying code from MATLAB to simulink function block
Show older comments
I have attached a picture to what I mean by this error. Any help would be appreciated on how I could overcome this error. This is usually how i code using the matlab coder but i think the matlab function in simulink doesn't accept a lot of syntax.
Thanks!
Answers (2)
VBBV
on 1 Feb 2022
0 votes
Remove the word end from brackets
3 Comments
VBBV
on 1 Feb 2022
If you want to use in array while using in if condition, then it's recommended to assign a variable to last value of array and then use that variable in if condition
Vishal Varadraj
on 1 Feb 2022
VBBV
on 1 Feb 2022
SampleTemperatureHeating(length(SampleTemperatureHeating))
When you use length(yourarray) it gives largest value of array dimension. This means maximum number of elements in array. If you use in parenthesis () matlab will return the last value in that array. But this is usually not recommended as when your code gets larger, it becomes difficult to debug at later stage. That's why assign it to variable and call that variable inside the array.
K = length(SampleTemperatureHeating)
SampleTemperatureHeating(K)
Les Beckham
on 1 Feb 2022
0 votes
It looks to me like the problem in that screenshot is a typo: "Heaating" vs. "Heating" in the variable name which you are trying to index with (end).
1 Comment
Vishal Varadraj
on 1 Feb 2022
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!