How to plot vectors
3 views (last 30 days)
Show older comments
Baby Sri Laya Attunuru
on 20 Jun 2021
Answered: Sulaymon Eshkabilov
on 20 Jun 2021
How can i create a histogram of density with the histogram function and how can i Set the "FaceColor" to yellow ("y") ?
0 Comments
Accepted Answer
Sulaymon Eshkabilov
on 20 Jun 2021
A = ... % Your data
H = histogram(A);
H.FaceColor = 'y'; % Face Color
H.EdgeColor = 'r'; % Edge Color
0 Comments
More Answers (1)
See Also
Categories
Find more on Histograms in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!