import control import numpy as np tf = control.TransferFunction([1], [1, 0]) arr = np.array([ [1, 0], [2, 1], ]) print(tf * arr) print(arr * tf) ValueError: C = A * B ...
Is this expected to fail silently here? Also, I am not sure this requires a Python scalar... it seemed to be causing issues in a larger piece of code when the first index is also a jax array, but I ...