Gistlib Logo

gistlib

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

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

bode(sys);
71 chars
6 lines

similar matlab code snippets

use matlab to draw the bode plot of the following function. 𝑀(𝑠) = 2000(𝑗𝑀 + 0.5)/ 𝑗𝑀(𝑗𝑀 + 10)(𝑗𝑀 + 50) in matlab
how to plot transfer functions? in matlab
nyquist plot in matlab
linearize a second-order system in matlab
linearize a second-order system without symbolic math toolbox in matlab
build a nonlinear robust mpc in matlab 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
complex conjugate nyquist in matlab
automatic pid tuning in matlab

related categories

matlab
control-systems
bode-plot

gistlibby LogSnag