How do you plot points on a Bode plot?
You can use [mag,~,wout] = bode(sys) and then plot(wout,mag) to create the Bode plot. Then, using hold on and plot(...) , you can add whatever points you need to the plot. Note that wout is in radians per TimeUnit , which is a property of sys (source).