How do i plot a line at a single desired point on the X-Axis?

3 Ansichten (letzte 30 Tage)
Parth Sarathi
Parth Sarathi am 10 Apr. 2016
Beantwortet: Kuifeng am 10 Apr. 2016
I have a data i.e. x=[1:10]; y=[23 24 29 45 32 23 67 45 89 31]; and i want to draw a line on the x-axis at point 6 of x-axis. How can i do that? Thanks, Parth
  1 Kommentar
Walter Roberson
Walter Roberson am 10 Apr. 2016
Where should the line start? Where should it end? Is it a horizontal line or a vertical line?

Melden Sie sich an, um zu kommentieren.

Antworten (1)

Kuifeng
Kuifeng am 10 Apr. 2016
%at point x0 = 6, vertical line
x0 = 6;
plot([x0 x0], [min(y), max(y)], 'r-');
%revise the y values to your desired values

Kategorien

Mehr zu Interpolation 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