LINE Solver
MATLAB API documentation
Loading...
Searching...
No Matches
get_one_div_by_factor.m
1function value = get_one_div_by_factor(n_plus_1)
2if n_plus_1 > (libqbd.get_max_factor() - 1)
3 value = 0.0;
4 return;
5end
6
7value = exp(-gammaln(double(n_plus_1) + 2.0));
8end