How can I join points with line

3 ビュー (過去 30 日間)
Tanvir Hossain
Tanvir Hossain 2020 年 1 月 13 日
コメント済み: darova 2020 年 1 月 16 日
I've 4 points. I want to join first two of the with a line and then second two with another line
My desired picture is given below
Untitled.png
I can draw the first graph with maker. but but I want to join these points.
Thanks in advance

採用された回答

Adam Danz
Adam Danz 2020 年 1 月 13 日
Use matrix inputs. A line is drawn for each column of inputs. The first matrix defines the x values, the 2nd matrix defines the y values.
plot([0 1; 1.5 3],[1 2; 5 6], 'r-o')
  1 件のコメント
darova
darova 2020 年 1 月 16 日
please accept my answer too

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

その他の回答 (1 件)

darova
darova 2020 年 1 月 13 日
Try to reshape data
a1 = reshape(a,[],2);
b1 = reshape(b,[],2);
plot(a1,b1)
% plot(a1',b1') % another variant

カテゴリ

Help Center および File Exchange2-D and 3-D Plots についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by