フィルターのクリア

Dynamic data plotting

4 ビュー (過去 30 日間)
skyimager
skyimager 2012 年 5 月 30 日
How to do dynamic plotting of data. I am receiving data continuously from the serial port (data given by a sensor). Now i want to plot the data in my gui simultaneoulsy in real time. As and when data is coming the plot should get updated. I have spent hours on this but no output.
  1 件のコメント
Oleg Komarov
Oleg Komarov 2012 年 5 月 30 日
Check the timer() and set() functions.
If you want more details you have to provide more: http://www.mathworks.com/matlabcentral/answers/6200-tutorial-how-to-ask-a-question-on-answers-and-get-a-fast-answer

サインインしてコメントする。

回答 (1 件)

Walter Roberson
Walter Roberson 2012 年 5 月 30 日
Set up the serial port with BytesAvailableFcnCnt = 1, BytesAvailableMode = 'byte', and BytesAvailableFcn being a function that adds the character to the current plot.
This arrangement is likely to end up dropping characters, as the overhead of calling the plot function once per byte is likely going to be too high. You should reconsider your "real time" and "when data is coming" requirements, keeping in mind that your display probably cannot update more than 60 times per second (and possibly only 12 times per second if you are using an LCD display from one of the first several generations.)
  2 件のコメント
skyimager
skyimager 2012 年 5 月 30 日
sir..thank you for ur answer. I want to update the data once every 2 secs. The problem is once the gui starts..the text box takes in only the first value. I have to click a refresh button in my gui to get the subsequent values. If only the values can be stored in an array which can then be plotted.
Walter Roberson
Walter Roberson 2012 年 5 月 30 日
data_array = [data_array, newly_read_data];
Save that somewhere your plot routine can get at it, and trigger the plot routine. The plot routine should have a drawnow() to update the graphics.

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeGraphics Performance についてさらに検索

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by