Two graphs in the same plot, why?
3 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Sergio
el 31 de En. de 2024
Comentada: Sergio
el 31 de En. de 2024
Hi, I imported some data from an xls file, and when plotting it , I obtain two graphs in the plot. Only one is necessary. What is the other and why does it appear?
xlsread('sunHoursInTrollhattan.xlsx')
plot(ans)
xlabel('måned')
ylabel('timer')
title('Soltimar i Trollhattan')
Thanks
0 comentarios
Respuesta aceptada
Alan Stevens
el 31 de En. de 2024
Something like this
data = xlsread('sunHoursInTrollhattan.xlsx');
mins = data(:,1)*60 + data(:,2);
plot(1:12, mins,'o'),grid
Más respuestas (1)
Alan Stevens
el 31 de En. de 2024
You have the hours as one plot and the minutes as the other!
Turn the data into all minutes, or all hours first.
1 comentario
Ver también
Categorías
Más información sobre Bar Plots 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!