How add ". . ." sign between subplot

In a single figure, I have many signal to plot but I am interest to plot first two signal using two subplot and last signal using a subplot start with a sign ". . ." in matlab. How can this is possible. The examplary figure is given bleow.

1 件のコメント

Stephen23
Stephen23 2018 年 12 月 28 日
Add a set of axes in that location, hide the axes lines and tick marks, plot some points.

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

 採用された回答

Akira Agata
Akira Agata 2018 年 12 月 29 日

0 投票

I think one possible solution would be like this:
figure
subplot(1,3,1)
plot(magic(4))
subplot(1,3,2,...
'Visible','off',...
'XLim',[0 1],...
'YLim',[0 1])
text(0.2,0.5,'...','FontSize',44)
subplot(1,3,3)
surf(peaks)
subplot.png

その他の回答 (0 件)

質問済み:

2018 年 12 月 28 日

回答済み:

2018 年 12 月 29 日

Community Treasure Hunt

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

Start Hunting!

Translated by