pymc.math.kron_solve_lower#

pymc.math.kron_solve_lower(krons, m, *, op=functools.partial(<function solve_triangular>, lower=True))#

Apply op to krons and m in a way that reproduces op(kronecker(*krons), m)

Parameters:
kronslist of square 2D array_like objects

D square matrices \([A_1, A_2, ..., A_D]\) to be Kronecker’ed \(A = A_1 \otimes A_2 \otimes ... \otimes A_D\) Product of column dimensions must be \(N\)

mNxM array or 1D array (treated as Nx1)

Object that krons act upon

Returns:
numpy array