Filter löschen
Filter löschen

How do I plot a horizontal line on my existing graph?

8 Ansichten (letzte 30 Tage)
Wilbur
Wilbur am 15 Jun. 2023
Beantwortet: Dyuman Joshi am 15 Jun. 2023
I have a MATLAB plot of a graph consisting of values input into a matrix R of size R x 1.
On the same graph I want to plot a horizontal line of fixed value k.
How do I do this? I tried using the yline() function to no avail.
My code to plot the graph is:
plot(R)
Trying to add the horizontal line I tried:
plot(R,yline(k))
But it does not work. Any advice?

Akzeptierte Antwort

Dyuman Joshi
Dyuman Joshi am 15 Jun. 2023
You need to use it as a separate command
%Random data for example
R = rand(10,1);
k = rand;
%plot the matrix
plot(R)
yline(k)

Weitere Antworten (0)

Kategorien

Mehr zu 2-D and 3-D Plots finden Sie in Help Center und File Exchange

Produkte


Version

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by