Effacer les filtres
Effacer les filtres

Plotting a dashed line onto a graph

69 vues (au cours des 30 derniers jours)
Christopher Arreola
Christopher Arreola le 10 Déc 2021
Réponse apportée : M.B le 10 Déc 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.

Réponses (1)

M.B
M.B le 10 Déc 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 ...

Catégories

En savoir plus sur 2-D and 3-D Plots dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by