How do you graph data from a table that is in a cell array ?
Show older comments
I have tables stored in arrays and I want to graph the data that is in the table.
Answers (1)
madhan ravi
on 2 Jul 2020
TaBlE = table;
TaBlE.a = rand(10);
plot(TaBlE.a)
Categories
Find more on Graph and Network Algorithms in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!