Adding vertical line to graph

2 views (last 30 days)
Hello,
I'm trying to present a vertical line to my graph as you can see below but I don't get the curve of the vetical line

Accepted Answer

Cris LaPierre
Cris LaPierre on 3 Jan 2019
Edited: Cris LaPierre on 3 Jan 2019
If you are on the latest version of MATLAB (18b), try using the new xline function.
xline(x1)
Otherwise, what happens if you use the plot function instead of line?
plot([x1 x1],[y0 y1])
  2 Comments
Cris LaPierre
Cris LaPierre on 3 Jan 2019
Edited: Cris LaPierre on 3 Jan 2019
Never mind. I see what you are doing.
You plot your line using frequency(k) for x, but everything else is plotted using frequency(k)/1e9 for x. Your line is being plotted waaaayyyy off to the right.
You also set the limits of your X axis using the axis function to frequency/1e9.
Your lines are there, but you've clipped them off. Try
x1 = x1/1e9;
line([x1 x1],[y0 y1])
or comment out the line of code containing the axis command. This will make it more obvious what is happening.

Sign in to comment.

More Answers (1)

madhan ravi
madhan ravi on 3 Jan 2019
Edited: madhan ravi on 3 Jan 2019
Save the variable in each iteration and plot it outside the loop , you seem to be overwriting them so finally you try to plot a point . Upload your code if you are not able to figure it out.

Categories

Find more on Line 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!