Gistlib Logo

gistlib

use matlab to draw the bode plot of the following function. 𝑀(𝑠) = 2000(𝑗𝑀 + 0.5)/ 𝑗𝑀(𝑗𝑀 + 10)(𝑗𝑀 + 50) in matlab

main.m
num = [2000 1000];
den = [1 60 500 0];
sys = tf(num, den);
bode(sys)
69 chars
5 lines

similar matlab code snippets

how to plot transfer functions? in matlab
nyquist plot in matlab
linearize a second-order system in matlab
iterative linear quadratic regulator for a cart pole system in matlab
calculate pid controller output for a process with a set-point change in matlab
linearize a second-order system without symbolic math toolbox in matlab
build a nonlinear robust mpc in matlab in matlab
complex conjugate nyquist in matlab
automatic pid tuning in matlab
generate model for car steering in matlab

related categories

matlab
control-systems
bode-plot

gistlibby LogSnag