How to draw three graphs together to make a composite figure

1 回表示 (過去 30 日間)
Parthu P
Parthu P 2020 年 1 月 8 日
コメント済み: Parthu P 2020 年 1 月 8 日
Hi,
I need some help to draw parts 'A' and 'B' as shown in following diagram:
scan_uqrpati1_2020-01-08-13-01-32.jpeg
I used plot3 (x,y,z) to draw main figure but I also want to draw subfigures 'A' and 'B' as showed above such that 'A' and 'B' have same x- and y-axes respectively.
Thanks in advance.
  1 件のコメント
KSSV
KSSV 2020 年 1 月 8 日
Make the coordinates for the other A, B use hold on and plot.

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

採用された回答

KSSV
KSSV 2020 年 1 月 8 日
C = [0 0 ; 1 0 ; 1 1 ; 0 1 ; 0 0 ] ;
A = [0 1 ; 0 1.25 ; 1 1.25 ; 1 1 ; 0 1] ;
B = [1 0 ; 1 1 ; 1.25 1 ; 1.25 0 ; 1 0] ;
plot(C(:,1),C(:,2),'r')
hold on
plot(A(:,1),A(:,2),'r')
plot(B(:,1),B(:,2),'r')
  1 件のコメント
Parthu P
Parthu P 2020 年 1 月 8 日
Thank you very much for response.
I trid this but I'm looking for something different. I think it's my mistake in expplaining the problem.
Actually I'm looking for following:
Picture1.jpg

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeLine Plots についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by