Data 'gestureType': Character outputs are not supported in Simulink and Stateflow. Cast 'gestureType' to int8 or uint8 instead.
7 views (last 30 days)
Show older comments
I am a new user in MATLAB. I can not find the solution. Please help me how to solve this!

2 Comments
Answers (1)
Fangjun Jiang
on 17 Nov 2023
MATLAB Function block does not support 'char' data type, so you can't write y='abc' for example.
But since R2019b, it supports 'string' data type, so you can write y="abc".
Most likely, making the above change should resolve the problem.
6 Comments
Fangjun Jiang
on 28 Nov 2023
It might not matter but change the first line to be
gestureType = "No Gesture" or gestureType = ""
See Also
Categories
Find more on Array and Matrix Mathematics 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!