Clear Filters
Clear Filters

Plotting a real time bar graph and a real time threshold line in the same axes

1 view (last 30 days)
Hello Everyone,
I am trying to write a code that plots a real time signal (through a bar graph) and a line threshold on the same axes in a GUI. I'm already able to plot the real time data, but when I try to plot the line I get no error messages but cannot see the line.
Obs: Already tried using axes(currentaxes) and hold, the axes command bugs the heck out of my code and the hold command didn't get me anywhere.
Here's what I'm doing inside of the loop:
fb = bar(displayFB,PLOTY) % displayFB is the axes in which I am plotting
thresh = refline(displayFB, 0, c) % c is the intersect of the line
The fb plot works fine, but I can't get the thresh to work.
I am kind of new to object oriented programming so if you guys are able to respond extensively that'd be great.
Thank you for your time.

Answers (1)

Paul Sponagle
Paul Sponagle on 4 Aug 2016
I am not sure I fully understand the question, but will 'hold on' before the code and 'hold off' after the code work for this?
  1 Comment
Giovanni Scavariello
Giovanni Scavariello on 4 Aug 2016
I'm sorry if I wasn't very clear, how could I make it clearer?
I've tried to do this, and it does exactly nothing, I can only see the bar graph and not the line.

Sign in to comment.

Categories

Find more on Discrete Data Plots 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!