Scatter Plotting multiple graphs(x, y) on a single graph

I would like to scatter plot five pieces of data (eg. X1, Y1, X2, Y2, X3, Y3......X5, Y5) all on one graph?

回答 (1 件)

Azzi Abdelmalek
Azzi Abdelmalek 2014 年 8 月 12 日
編集済み: Azzi Abdelmalek 2014 年 8 月 12 日

2 投票

scatter([X1,X2,X3,X4,X5],[Y1,Y2,Y3,Y4,Y5])
%or
scatter(X1,Y1)
hold on
scatter(X2,Y2)
scatter(X3,Y3)
scatter(X4,Y4)
scatter(X5,Y5)

2 件のコメント

pranjali vatsalaya
pranjali vatsalaya 2021 年 2 月 25 日
thank you
could you pls also help me in labeling these separetly.
using the first them plots them together as the same data and i cant label them separately.
thanks in advance
Aieman Haziq
Aieman Haziq 2022 年 1 月 12 日
welcome'

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

カテゴリ

タグ

質問済み:

2014 年 8 月 12 日

コメント済み:

2022 年 1 月 12 日

Community Treasure Hunt

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

Start Hunting!

Translated by