필터 지우기
필터 지우기

Plotting a dashed line onto a graph

조회 수: 69 (최근 30일)
Christopher Arreola
Christopher Arreola 2021년 12월 10일
답변: M.B 2021년 12월 10일
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.

답변 (1개)

M.B
M.B 2021년 12월 10일
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 ...

카테고리

Help CenterFile Exchange에서 2-D and 3-D Plots에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by