a = [2];
b = [1 0 0];
f= tf(a,b)
f =
2
---
s^2
Continuous-time transfer function.
syms t;
d= laplace(2*t)
d =
S= feedback(f,1)
S =
2
-------
s^2 + 2
Continuous-time transfer function.
D= feedback(d,1)
Error using feedback
Not enough input arguments.
Not enough input arguments.
So, why the laplace tranform is not considered as a transfer function ???? If I have a time domain system, then how we can calculate the transfer function of that system.