Plotting colums from matrix

6 views (last 30 days)
Noah Swiston
Noah Swiston on 14 Apr 2015
Answered: William on 14 Apr 2015
I am looking to plot certain colums from a matrix. I want to plot colums 7-10 and column 12 all on a line graph. Thanks
  1 Comment
Jonathan Campelli
Jonathan Campelli on 14 Apr 2015
Is column 12 intended to be your X or Y axis?

Sign in to comment.

Answers (1)

William
William on 14 Apr 2015
If your data array is like...... data(row,column)
a = data(:,7:10)
b = data(:,12)
hold on
plot(a)
plot(b)
hold off

Categories

Find more on 2-D and 3-D Plots in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!