Plotting a dashed line onto a graph

145 Ansichten (letzte 30 Tage)
Christopher Arreola
Christopher Arreola am 10 Dez. 2021
Beantwortet: M.B am 10 Dez. 2021
So here's my graph:
How do I add a dashed line that originates from a particular point somewhere in the middle of the plot on each of the graphs? For example, I would like my dashed line to start at the point 3 on the x-axis for the green curve on the bottom of the second graph and will terminate at point 5
Observe the following graph I'm trying to replicate, notice the dashed lines originating from a particular point on each of the graphs then terminates at the end. I'm not recreating parts b. and d. like this graph has it so not worried about dashed lines extending beyond the the end of the axis for parts a. and c.

Antworten (1)

M.B
M.B am 10 Dez. 2021
add this to your plot:
x_from = 3;% the dotted line starts at x = 3
x_to = 5;% the dotted line finished at x = 5
yvalue = 2.3;% the line will have an amplitude of 2.3
plot([3 5], [yvalue yvalue], 'b:');% b for blue, r for red, g for green , k for black ...

Kategorien

Mehr zu 2-D and 3-D Plots 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!

Translated by