Feeds
已回答
how to convert a Laplace transform into a transfer function value
a = [2]; b = [1 0 0]; f= tf(a,b) syms t; d= laplace(2*t) S= feedback(f,1) D= feedback(d,1) So, why the laplace tranf...
how to convert a Laplace transform into a transfer function value
a = [2]; b = [1 0 0]; f= tf(a,b) syms t; d= laplace(2*t) S= feedback(f,1) D= feedback(d,1) So, why the laplace tranf...
3 years 前 | 0
提问
how to convert a Laplace transform into a transfer function value
>> A= tf([1 0],[1 1]) A = s ----- s + 1 Continuous-time transfer function. >> p= feedback(A,1) p = ...
3 years 前 | 1 个回答 | 0