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_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