plotting multiple graphs and adding a straight line
古いコメントを表示
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')
採用された回答
その他の回答 (0 件)
カテゴリ
ヘルプ センター および File Exchange で Line Plots についてさらに検索
製品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!