You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on May 11, 2023. It is now read-only.
Would be nice to support a Kronecker linear operator, that takes a list of linear operators and constructs a Kronecker matrix. This would be highly useful for spatial statistics.
importjax.numpyasjnpmat=jnp.array([[1., 2.], [3., 4.]])
diag=jnp.array([5., 6.])
A=DenseLinearOperator(mat)
B=DiagonalLinearOperator(diag)
KroneckerLinearOperator([A, B]) # A ⊗ B
The text was updated successfully, but these errors were encountered:
Would be nice to support a Kronecker linear operator, that takes a list of linear operators and constructs a Kronecker matrix. This would be highly useful for spatial statistics.
The text was updated successfully, but these errors were encountered: