Source code for ska_sdp_func_python.calibration.jones

"""
Jones matrix related operations.
"""

import numpy


[docs] def apply_jones(ej, cfs, inverse=False, min_det=1e-6): """ Apply Jones matrix (or inverse). :param ej: 2x2 Jones matrix :param cfs: 2x2 matrix of stokes :param inverse: Calculate the inverse :param min_det: Minimum determinant in invert :return: Jones matrix """ if inverse: if numpy.abs(numpy.linalg.det(ej)) > min_det: inv_ej = numpy.linalg.inv(ej) inv_cej = numpy.conjugate(inv_ej).T return inv_ej @ cfs @ inv_cej return 0.0 * cfs cej = numpy.conjugate(ej).T return ej @ cfs @ cej