A loop to extract and plot data from a table

I have a table that has 10 rows and 11 colums, I want to extract the colume data and plot them against x-axis. X-axis is 0:1:10. I want to plot all the data in one graph.
Do you have any suggestions about how to do this?

回答(2 个)

I think you meant x = 0:1:9 (10 rows).
You can do something like this
t % 10x11 table
M = table2array(t); 10x11 matrix
plot(0:9, M);
This plot all lines on one axes.

类别

帮助中心File Exchange 中查找有关 Tables 的更多信息

标签

提问:

2020-9-21

回答:

2020-9-21

Community Treasure Hunt

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

Start Hunting!

Translated by