How can I change graph label linearly to a time interval
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Dussan Radonich
el 19 de Jun. de 2021
Comentada: Dussan Radonich
el 19 de Jun. de 2021
I have datasets that correspond to a certain time of simulations. When I plot these datasets, the x labels, of course, shows the length of the data. I changed it with
xticks([0 1000 2000 3000])
xticklabels({'0','10','20','30'})
Which is not very accurate, and wanted to know if there is a way of making the length of my data equals to 'x' nanoseconds and then adjust the ticks and labels accordingly.
0 comentarios
Respuesta aceptada
LO
el 19 de Jun. de 2021
you can create a time vector and plot it together with your data
time = linspace(1,3000,3000)
plot(time, rand(1,3000))
Más respuestas (0)
Ver también
Categorías
Más información sobre 2-D and 3-D 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!