How to plot vectors
3 次查看(过去 30 天)
显示 更早的评论
How can i create a histogram of density with the histogram function and how can i Set the "FaceColor" to yellow ("y") ?
0 个评论
采纳的回答
Sulaymon Eshkabilov
2021-6-20
A = ... % Your data
H = histogram(A);
H.FaceColor = 'y'; % Face Color
H.EdgeColor = 'r'; % Edge Color
0 个评论
更多回答(1 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Histograms 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!