Files
Phase_Unwrapping_Comparison/matlab_code/eval_error.m
MiriamLoecke 5c1efe956f added codes
2023-07-12 11:36:04 +02:00

3 lines
104 B
Mathematica

function err = eval_error(phi_w, ground)
err = norm(phi_w(:) - ground(:), 2)/norm(ground(:), 2);
end