How do I plot multiple vectors in a graph

I have two vectors and I need them to plot together on the same graph.
Example:
A = [1,2,3,4,5,6]
B = [1,2,3,4,5,6]
Assuming that the X of the graph is the vector A, I need all the values of A to appear, in relation to a point of the vector B, which would be the Y, so the (x,y) would be:
(1,1),(2,1),(3,1),.....
So successively until vector B runs out.
(1.6), (2.6), (3.6), ....

回答 (1 件)

Voss
Voss 2023 年 1 月 15 日
編集済み: Voss 2023 年 1 月 15 日

0 投票

Like this?
A = 1:6;
B = 1:6;
[Ap,Bp] = ndgrid(A,B);
plot(Ap,Bp)

2 件のコメント

Luiz Felipe
Luiz Felipe 2023 年 1 月 15 日
EXACTLY, but how can I place the lines vertically with the same references?
Image Analyst
Image Analyst 2023 年 1 月 15 日
編集済み: Image Analyst 2023 年 1 月 15 日
@Luiz Felipe you can place vertical lines at arbitrary locations with xline
You can also use
grid on
if you want them along tick marks.

サインインしてコメントする。

カテゴリ

ヘルプ センター および File Exchange2-D and 3-D Plots についてさらに検索

製品

質問済み:

2023 年 1 月 15 日

編集済み:

2023 年 1 月 15 日

Community Treasure Hunt

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

Start Hunting!

Translated by