plotting multiple graphs and adding a straight line

3 Ansichten (letzte 30 Tage)
Lim Zhi Yang
Lim Zhi Yang am 1 Okt. 2020
Kommentiert: Star Strider am 1 Okt. 2020
I am trying to plot multiple graphs, and I want to add a straight line of y = 2.3 into the graph but it only shows my first two plots which are x1,OA and x2,OF.
here is my code
x1 = [0:1:101];
OA = 0.00022494*x1.^2;
x2 = [0:1:74.4];
OF = -0.00018056*x2.^2;
x3 = [101:1:265];
AC = 2.3;
plot(x1,OA,'r',x2,OF,'r',x3,AC,'r')

Akzeptierte Antwort

Star Strider
Star Strider am 1 Okt. 2020
There are at least 2 ways to do that:
x1 = [0:1:101];
OA = 0.00022494*x1.^2;
x2 = [0:1:74.4];
OF = -0.00018056*x2.^2;
x3 = [101:1:265];
AC = 2.3;
figure
plot(x1,OA,'r',x2,OF,'r',x3,AC,'r')
yline(2.3) % First Option
figure
plot(x1,OA,'r',x2,OF,'r',x3,AC,'r')
hold on
plot(xlim, [1 1]*2.3, '-b') % Second Option
hold off
.

Weitere Antworten (0)

Kategorien

Mehr zu Line Plots finden Sie in Help Center und File Exchange

Tags

Produkte

Community Treasure Hunt

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

Start Hunting!

Translated by