# Matrices: k: [K,C] # Weights x: [K,R] # Inputs a: [C,R] # Partial sums y: [C,R] # Outputs The system performs: y = k.T @ x + a [C,R] [C,K] [K,R] [C,R] Note that the weights k[K,C] needs to be ...