Making the x axis of a graph move as time goes on and new values enter.
조회 수: 2 (최근 30일)
이전 댓글 표시
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
채택된 답변
Kunal Kandhari
2024년 5월 23일
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:
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Develop Apps Using App Designer에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!