How to give a step input with special shape?
Show older comments
Hi everyone, I am trying to give a step tracking input for an aircraft pitch transfer function. Attached you can find the type of input I am looking for. I don't know how to define this input to Matlab. Thanks in advance.
Accepted Answer
More Answers (1)
hosein Javan
on 12 Jan 2017
0 votes
hello. I have attached a simulink file. unzip it and open it. you only have to define your transfer function.
1 Comment
hosein Javan
on 12 Jan 2017
also you can do it by matlab code:
syms s t
laplace(heaviside(-t+10)) %heaviside=u(t):step
tf=1/(s+1) %define your transfer function here
response=ilaplace(((1-exp(-10*s))/s)*tf)
ezplot(t,response)
Categories
Find more on MATLAB in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!