--
You received this message because you are subscribed to the Google Groups "sympy" group.
To unsubscribe from this group and stop receiving emails from it, send an email to sympy+un...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/sympy/80adfc05-80d6-49e3-a975-20b16eead1cen%40googlegroups.com.
from sympy.abc import s
from sympy.physics.control.lti import TransferFunction
from sympy.physics.control.control_plots import bode_plot
tf = TransferFunction(100, 100+s, s)
bode_plot(tf)

Here it is clear that the -3dB-point should be at 100 rad/s, but it is at 100 Hz.
Indeed it makes sense to have some option regarding the scale.
BR Oscar
--
You received this message because you are subscribed to the Google Groups "sympy" group.
To unsubscribe from this group and stop receiving emails from it, send an email to sympy+un...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/sympy/883ecbde-dc0a-4e16-8721-03a4e3ccf378n%40googlegroups.com.