histogram and plot at the same
20 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
cgo
el 13 de En. de 2015
Comentada: cgo
el 14 de En. de 2015
Hello,
Please help. I want to draw a plot of a function (the ones we have when we use plot()) and a histogram (with the bins) in the same graph (superimposed on each other).
Any ideas on how to achieve this?
Thanks
0 comentarios
Respuesta aceptada
Sean de Wolski
el 13 de En. de 2015
histogram(randn(1000,1))
hold on
plot(-6:6,abs(sin(-6:6)*100))
In R2014b. In R2014a and earlier use hist() instead of histogram.
Más respuestas (0)
Ver también
Categorías
Más información sobre Histograms 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!