Clear Filters
Clear Filters

Making the x axis of a graph move as time goes on and new values enter.

4 views (last 30 days)
We have a flow rate sensor that we were able to connect to an arduino and then get live updates of the flowrate through matlab. However, the experiments we run last several hours and the graph updates to show the new info and keeps the old which then makes it all very small and you can't see the changes that occur. We would like to have about a 3 minute window frame of the graph at all times that moves with the updating data. Then at the end once the experiment is finished we would like to see the whole graph. Thank you for any help.
Here is a picture of the code so far.

Accepted Answer

Kunal Kandhari
Kunal Kandhari on 23 May 2024
Hi Andrew,
You can use the following function within while loop to change the limits with time by putting some if constraints before it
set(gca, 'XLim', [lowerLimit, upperLimit]);
You can read more abot the 'XLim' function from here:
Similarly, you can set/change the y limits as well using 'YLim', read about that here:

More Answers (0)

Categories

Find more on Specifying Target for Graphics Output 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!