Plotting data from table
5 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
how can i plot every column ( of a 2 columns table )as a function of time in two different axes ?
0 comentarios
Respuestas (2)
Wei
el 20 de Dic. de 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));
Ver también
Categorías
Más información sobre Subplots en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!