Gistlib Logo

gistlib

use matlab to find the poles and zeros of the following functions. 𝑀(𝑠) = 𝑒 to the power of −2𝑠 /10𝑠(𝑠 + 1)(𝑠 + 2) in matlab in matlab in matlab in matlab

main.m
num = exp(-2*s);
den = 10*s*(s+1)*(s+2);

sys = tf(num, den);
zeros = zero(sys);
poles = pole(sys);

disp(zeros);
disp(poles);
127 chars
10 lines

similar matlab code snippets

use matlab to find the poles and zeros of the following functions. 𝑀(𝑠) = 𝑒 −2𝑠 /10𝑠(𝑠 + 1)(𝑠 + 2) in matlab
bar plot with two y-axis one for sum of squared error value and the second for adjusted r squared ,f-statistic values with 6 bar plot in one figure padding with zeros in matlab
matrix of size 25x2 in matlab
make matrices same size in matlab
how to add a value and fill the rest of the vector with zeros in matlab
zeros array in matlab
determine whether a transfer function is stable in matlab
find the second sequence of zeros in array in matlab
find all zeros of the riemann zeta function in matlab
how to perform a ztest in matlab

related categories

matlab
poles
zeros

gistlibby LogSnag