Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
X={0,5.4,6.18,6.81,6.85,6.95,6.96,7.20,7.51} と
Y={0,4.84,5.52,6.00,6.12,6.21,6.23,6.34,6.61}.2 つの線をプロットするのを手伝ってください
MATLAB.Thanksを使用して、これらのポイントを1つのグラフにまとめました
次のこともできます。
x_axis_X = 1:length(X); y_axis_Y = 1:length(Y); figure;plot(x_axis_X, X,'o-', y_axis_Y, Y, 'x-');