All Questions
1 question
3
votes
1
answer
908
views
How to realize a transfer function with higher order of numerator than denominator in octave?
a=1
% Construct the trasfer function
num=[a 1 3]
den=[1 2 10]
G=tf(num,den)
% Impulse response
impulse(G)
% Step response
step(G)
When I click on 'run' this error appears "error: Order ...