Making the x axis of a graph move as time goes on and new values enter.
    8 Ansichten (letzte 30 Tage)
  
       Ältere Kommentare anzeigen
    
    Andrew
 am 22 Mai 2024
  
    
    
    
    
    Kommentiert: Andrew
 am 23 Mai 2024
            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.

0 Kommentare
Akzeptierte Antwort
  Kunal Kandhari
      
 am 23 Mai 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:
Weitere Antworten (0)
Siehe auch
Kategorien
				Mehr zu Arduino Hardware finden Sie in Help Center und File Exchange
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

