MATLAB: How can i plot probability density distribution of f(x)=20000/(x+100)^3, x>0 ? thanks for the help

MATLABpdf

f(x)=20000/(x+100)^3, x>0

Best Answer

Like this:
x = linspace(0,1000);
fx=20000./(x+100).^3;
plot(x,fx);