transfer function How would I input this transfer function in python? I'm having trouble with the exponential term in the numerator. I'm currently using the python control systems library; is it possible to input the exponential term with this library? As far as I know, you can only input the transfer function through a list of coeficients like this
Hlc = control.tf(eqnum , eqden)
eqnum and eqden are both a list of numbers
I've red through the documentation of python control systems library