All Questions
Tagged with transfer-function symbolic-math
3 questions
0
votes
1
answer
259
views
Symbolic Fraction Summation with Common Denominator (MATLAB)
Hello there, hope you are all doing well.
I have two symbolic fractions with different denominators and I would like to know the result of the subtraction of them. I tried simplify and ...
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 ...
0
votes
0
answers
430
views
sym2poly selectively working matlab
I'm evaluating a series of theoretical (not necessarily functional) circuits in matlab. I have been trying to get the transfer function of the circuits and during the process I use the sym2poly ...