Fill below function fplot
3 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Joaquin Saldain
am 25 Jul. 2018
Beantwortet: dpb
am 25 Jul. 2018
How to fill the area below this Beta density, between x=0 and x=0.5.
% fplot(@(x) betapdf(x,a_beta,b_beta),[0 1],'b');
Akzeptierte Antwort
dpb
am 25 Jul. 2018
Madan's comment amplified...
fnF=@(x) betapdf(x,a_beta,b_beta);
figure
fplot(@(x) betapdf(x,a_beta,b_beta),[0 1],'b');
hold on
x=linspace(0,0.5);
area(x,fnF(x))
0 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Line Plots finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!