How to use subplot in conjunction with set function on plot

2 ビュー (過去 30 日間)
Jade Sen
Jade Sen 2015 年 4 月 15 日
回答済み: Dishant Arora 2015 年 4 月 15 日
So recently i stumbled across a matlab program to plot real time values when provided with input.In the program, set() was used to set the properties of plot to different values. The program gives a single output plot with real time plots. But how can I modify it to make it display two graphs(from two input sources) in real time, for comparison and further processing?

回答 (1 件)

Dishant Arora
Dishant Arora 2015 年 4 月 15 日
Axes1 = subplot(1 , 2, 1);
h1 =plot(x1 , y1);
Axes2 = subplot(1 , 2 , 2);
h2 = plot(x2 , x2)
Here Axes1 and Axes2 are handles to different axes, and h1 , h2 are handles to the line.

カテゴリ

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

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by