How to change Axes values to 'String' instead of 'numbers' on Simulink Scope?
2 views (last 30 days)
Show older comments
Ramkumar Ganesan Rajalekshmi
on 12 Sep 2021
Commented: Ramkumar Ganesan Rajalekshmi
on 12 Sep 2021
I am currently learning MATLAB/Simulink Software. I usually have seen scope outputs with numbers on the Y-axis. This scope image shows names instead of numbers. Actually, the output is from a Stateflow chart. This is a Sample model program in Simulink (openExample('stateflow/AutomaticTransmissionUsingDurationOperatorExample')). I tried checking the callback functions as well the properties of the blocks and the entire model. I could not understand how the axis properties are changed to a string instead of a number. I have attached the scope output image. Can anyone please help me understand it?
0 Comments
Accepted Answer
More Answers (1)
Sreedhar Arumugam
on 12 Sep 2021
Edited: Sreedhar Arumugam
on 12 Sep 2021
It is my understanding that you are asking why the y-axis is displaying the values as strings such as 'first', 'second' and so on, instead of numerical values.
The first step is to understand the data that the scope is actually displaying. The scope is meant to display how the gear value changes with time. By observing the model, it can be seen that the scope is connected to the output signal from the Gear_logic Stateflow chart.
This chart models the shifting of gears based on throttle and speed of the vehicle. It calculates next gear value based on current gear, throttle, and current vehicle speed.
According to the chart, there are four states that can be reached - 'first', 'second', 'third', 'fourth'
These are the same values that are displayed on the y-axis of the scope output that you have attached.
See Also
Categories
Find more on Simulink Functions 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!