Can Somebody help me to write this equation in Matlab to get the value of Lambda?
Ältere Kommentare anzeigen
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.

Akzeptierte Antwort
Weitere Antworten (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 Kommentar
Ashish Rauniyar
am 12 Mär. 2014
Bearbeitet: Ashish Rauniyar
am 12 Mär. 2014
Kategorien
Mehr zu Pie Charts finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!