writing values from stateflow chart

1 view (last 30 days)
Hamza Hamza
Hamza Hamza on 30 Jul 2022
Answered: Sayan on 5 Sep 2023
Hi ,
I am working currently on a simulink model , to which i added a stateflow chart . The last task in the Stateflow is to type down values i ll get from a sensor . So i wanted to ask , if there is anykind of function that allows to get some measures written for a period of time (20 sec) . I would be very glad for your help .

Answers (1)

Sayan
Sayan on 5 Sep 2023
I understand from your query that it is required to write the output data from the "Stateflow" chart for a period of 20 seconds. The possible ways to do that are mentioned below.
  • The sensor output of the stateflow can be written to a ".mat" file. To do this, a To File block can be added, which will store the data in ".mat" format. The datatype of output can be configured in the "Save format" field.
  • The "MATLAB Function" (available at Simulink/User-Defined Functions) block can be used to capture and store sensor measurements for a specified period of time. In this block, the input is the sensor output data that needs to be written. You can write your code here in the function to store the data in the desired format for the specific period of time.
Further details about the above blocks can be found in the following MATALAB documentation:
Hope this helps resolve the query.

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!