Plotting data from table
5 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
how can i plot every column ( of a 2 columns table )as a function of time in two different axes ?
0 commentaires
Réponses (2)
Wei
le 20 Déc 2013
You need to convert the table data into numbers, and you need the time for the plot. Try this:
data = str2double(get(handles.table,'data');
plot(axes1, t1, data(:,column's name1));
plot(axes2, t2, data(:,column's name2));
Voir également
Catégories
En savoir plus sur Subplots dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!