Fitting a curve on normalized histogram
3 views (last 30 days)
Show older comments
I am looking to plot a curve on normalized histogram something like this? What to do? My code till now
X = wblrnd(5,5, 1, 1000);
Z = X- 1;
figure('DefaultAxesFontSize',18);
P = histogram(Z,'Normalization','pdf');
hold on
xlabel('RUL')
ylabel ('Density')

0 Comments
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!