How to change Axes values to 'String' instead of 'numbers' on Simulink Scope?

3 views (last 30 days)
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?

Accepted Answer

Paul
Paul on 12 Sep 2021
Make the signal input to the scope a Simulink Enumeration type.

More Answers (1)

Sreedhar Arumugam
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.
  1 Comment
Ramkumar Ganesan Rajalekshmi
Hello Sreedhar,
Sorry i could not explain properly. I understood the working of the model. But i could not make the scope display the state names in my y-axis. Then i changed the data type to enum and it worked!! Now i am able to visualize the state names on my Y-axis.
Regards,
Ram

Sign in to comment.

Categories

Find more on View and Analyze Simulation Results 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!