How to plot a table as a figure in matlab?
6 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
I have a set of values to create a table from the array in the workspace. I don't know how to plot the array values as a figure in the table format?
2 Commenti
Akira Agata
il 18 Feb 2017
Is this what you want to do?
T = array2table([(1:10)' rand(10,1)]); % Sample table
plot(T{:,1},T{:,2})
Risposte (0)
Vedere anche
Categorie
Scopri di più su Annotations in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!