-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Retardance above pi #17
Comments
The retardance function should only output values between To Do
|
The real part of the first element of the jones matrix, |
The phase wrapping effect should be accounted for in the final step of calculating the retardance from a jones matrix. # Calculate the phase differences (retardance)
retardance = np.angle(eigenvalues[0]) - np.angle(eigenvalues[1])
# Normalize the phase difference to [0, 2*pi) and assure values are positive
retardance = (retardance + 2 * np.pi) % (2 * np.pi)
# Wrap the phase difference to [0, pi]
if retardance > np.pi:
retardance = 2 * np.pi - retardance |
Need to check if calculation and interpretation is appropriate
The text was updated successfully, but these errors were encountered: