Again moving on... now lets see a bit of Control System in MATLAB...
To start with how to define a transfer function in Laplace Domain...
its simple...just use the command "tf"
say
>>num=[0 0 1];
>>den=[1 2 1];
>>tf(num,den)
will give the pout put as
:
1/(s^2+2s+1)
Try this out.... and for more on Control System Toolbox type
>>help control
Don't worry I will go through all tools you might need in Control System Toolbox...in a few days...
So long...
To start with how to define a transfer function in Laplace Domain...
its simple...just use the command "tf"
say
>>num=[0 0 1];
>>den=[1 2 1];
>>tf(num,den)
will give the pout put as
:
1/(s^2+2s+1)
Try this out.... and for more on Control System Toolbox type
>>help control
Don't worry I will go through all tools you might need in Control System Toolbox...in a few days...
So long...