Erlang distribution n=50 , m= 5; 6; k= 5; 9

조회 수: 12 (최근 30일)
Anita Pashaliyska
Anita Pashaliyska 2022년 1월 24일
댓글: Torsten 2022년 1월 24일
Hello! I'm new here. I have task to generate cdf and pdf plots of erlang distribution with parametes: n=50 m=5; 6; k=5; 9;.
Can someone help me? Every help will be appriciate!
  댓글 수: 1
Torsten
Torsten 2022년 1월 24일
I only see the distribution to depend on two parameters:
What are n, m and k in the Wiki-article ?

댓글을 달려면 로그인하십시오.

답변 (1개)

KALYAN ACHARJYA
KALYAN ACHARJYA 2022년 1월 24일
Please set the typical values
t=....;
m=...;
k=....;
erlang_dist=t.^(k-1).*exp(-t/m)/(m.^k.*factorial(k-1));
plot(t,erlang_dist);
More you can look at this fun also (Read about Erlang function distribution)

카테고리

Help CenterFile Exchange에서 Descriptive Statistics and Visualization에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by