How to draw 2 different plot on a graph

we have two column A and B. so how to draw 2 different plots on a graph?

回答 (1 件)

Tommy
Tommy 2020 年 5 月 29 日
編集済み: Tommy 2020 年 5 月 29 日

0 投票

hold on
or
set(gca, 'NextPlot', 'add')
in between your calls to plot or however you are plotting.

5 件のコメント

Hung Tat Ho
Hung Tat Ho 2020 年 5 月 29 日
thanks Tommy, if the number of each column to much(about 1.300.000 row) how can i draw it?
Tommy
Tommy 2020 年 5 月 29 日
Can you provide all of your code? I'm thinking a bit more context could be useful.
Hung Tat Ho
Hung Tat Ho 2020 年 5 月 29 日
編集済み: Hung Tat Ho 2020 年 5 月 29 日
Thank Tommy, here is my code, can you help me! newdata is about 1 column and 1.300.000 rows
[clearData,outlierIndices]=rmoutliers(Databbase);
Newdata=table2array(clearData)
A=Newdata(:,1);
plot(A,'m-')
Tommy
Tommy 2020 年 5 月 29 日
Ok thank you. What are you hoping the plot will look like? Your vector is so long that it is impossible to see any of the background which would make it easier to see the actual values being plotted. Similar to the following:
plot(rand(1000000,1))
Do you no longer have two columns to plot?
Hung Tat Ho
Hung Tat Ho 2020 年 5 月 29 日
Hi. i have two columns with too much raws as each column and i want the plot look like as below, it included two different plots in one graph.

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

カテゴリ

ヘルプ センター および File Exchange2-D and 3-D Plots についてさらに検索

製品

リリース

R2018b

タグ

質問済み:

2020 年 5 月 29 日

コメント済み:

2020 年 5 月 29 日

Community Treasure Hunt

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

Start Hunting!

Translated by