Plotting data from table
3 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
how can i plot every column ( of a 2 columns table )as a function of time in two different axes ?
0 Kommentare
Antworten (2)
Wei
am 20 Dez. 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));
Siehe auch
Kategorien
Mehr zu Subplots finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!