Info

此问题已关闭。 请重新打开它进行编辑或回答。

How to plot several sets of data?

3 次查看(过去 30 天)
Dustin
Dustin 2014-6-25
关闭: MATLAB Answer Bot 2021-8-20
There are 3 sets of data. Each set of data has 5 columns one column is bacteria counts and another is the day. How would you plot the day vs the bacteria counts for all three sets of data?

回答(1 个)

Star Strider
Star Strider 2014-6-25
I would use subplot. I don’t know how your data are organized otherwise, so I can’t be more specific than that.
For example, if your data sets are Data1...Data3, the days are in column 1 and the counts are in column 2, this would work:
figure(1)
subplot(3,1,1)
plot(Data1(:,1), Data1(:,2))
subplot(3,1,2)
plot(Data2(:,1), Data2(:,2))
subplot(3,1,3)
plot(Data3(:,1), Data3(:,2))
  6 个评论
Joseph Cheng
Joseph Cheng 2014-6-25
? you're the one that answered. I just happened to swing by during my usual progress bar boredom.
Star Strider
Star Strider 2014-6-25
True, but I appreciate your contribution. I was away for a few minutes.

标签

Community Treasure Hunt

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

Start Hunting!

Translated by