Info

This question is closed. Reopen it to edit or answer.

How to plot several sets of data?

1 view (last 30 days)
Dustin
Dustin on 25 Jun 2014
Closed: MATLAB Answer Bot on 20 Aug 2021
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?

Answers (1)

Star Strider
Star Strider on 25 Jun 2014
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 Comments
Joseph Cheng
Joseph Cheng on 25 Jun 2014
? you're the one that answered. I just happened to swing by during my usual progress bar boredom.
Star Strider
Star Strider on 25 Jun 2014
True, but I appreciate your contribution. I was away for a few minutes.

Tags

Community Treasure Hunt

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

Start Hunting!