Can Somebody help me to write this equation in Matlab to get the value of Lambda?
이전 댓글 표시
Somebody help me to write the given expression in Matlab to get the value of lambda. Thank you in advance. I have attached the jpg file along with it. |``` is a incomplete gamma function. Your response and help will be highly appreciated.

채택된 답변
추가 답변 (1개)
function [ans] = test(m,lamda)
r = factorial(m-1);
p = -lamda;
ans = exp(p)/r;
end
If you are interested in learning then start browsing mathworks help section
댓글 수: 1
Ashish Rauniyar
2014년 3월 12일
편집: Ashish Rauniyar
2014년 3월 12일
카테고리
도움말 센터 및 File Exchange에서 Pie Charts에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!