How to plot vectors
3 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Baby Sri Laya Attunuru
el 20 de Jun. de 2021
Respondida: Sulaymon Eshkabilov
el 20 de Jun. de 2021
How can i create a histogram of density with the histogram function and how can i Set the "FaceColor" to yellow ("y") ?
0 comentarios
Respuesta aceptada
Sulaymon Eshkabilov
el 20 de Jun. de 2021
A = ... % Your data
H = histogram(A);
H.FaceColor = 'y'; % Face Color
H.EdgeColor = 'r'; % Edge Color
0 comentarios
Más respuestas (1)
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!