how to plot two figures in one figure with different axes
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
amirhossein sarfi
el 13 de Mayo de 2019
Comentada: amirhossein sarfi
el 13 de Mayo de 2019
I am trying to plot flows collected in different time of the day for different days in the same plot. As the moments of collection are not exactly the same for each day the second plot is drawn in the continues of the first one:
whle I need them something like this:
2 comentarios
Jan
el 13 de Mayo de 2019
And what are your inputs? If you post the relevant part of the code, we can suggest a modification. But without seeing the code, the readers have to invent it.
Respuesta aceptada
Jan
el 13 de Mayo de 2019
Simply replace the line:
date2 = datenum(year2, month2, day2, hour2, min2, sec2);
by
date2 = datenum(year1, month1, day1, hour2, min2, sec2);
Then the data will use the same day.
Más respuestas (0)
Ver también
Categorías
Más información sobre Dates and Time 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!