Numba Functions

functions.numba_functions.sum_omega_02(omega)[source]

Sum over axis 0 and 2 the omega matrix. Is equivalent to np.sum(omega, axis=(0,2)) prueba

functions.numba_functions.sum_omega_13(omega)[source]

Sum over axis 1 and 3 the omega matrix. Is equivalent to np.sum(omega, axis=(1,3))

functions.numba_functions.sum_omega_ax(omega, ax)[source]

Sum over axis ax the omega matrix.

functions.numba_functions.sum_omega_02_lambda(omega, lambda_val)[source]

Sum over axis 0 and 2 the omega matrix and multiplies the result by a scalar labda_val. Is equivalent to np.sum(omega, axis=(0,2))*lambda_val

functions.numba_functions.sum_omega_13_lambda(omega, lambda_val)[source]

Sum over axis 1 and 3 the omega matrix and multiplies the result by a scalar labda_val. Is equivalent to np.sum(omega, axis=(1,3))*lambda_val

functions.numba_functions.sum_omega_ax_lambda(omega, ax, lambda_val)[source]

Sum over axis ax the omega matrix and multiplies the result by a scalar labda_val. Is equivalent to np.sum(omega, axis=(ax))*lambda_val