VERB_code_2.3
pfunc.m
1 function y=pfunc(K)
2 mc2 = 0.511;
3 y = sqrt( (K ./ mc2 + 1).^2 - 1) .* mc2;
4 return;
double pfunc(double K)
Computation of moumentum from Kinetic energy .