okay, i am trying to use the the step() function to find the step response of this equation
syms c l s r;
num = (s*l + (1/(s*c)) + r)
den = r
step(num,den)
for some reason i am getting a error message when i try to solve that:
??? sym c;
|
Error: Missing operator, comma, or semicolon.
what is going on?
syms c l s r;
num = (s*l + (1/(s*c)) + r)
den = r
step(num,den)
for some reason i am getting a error message when i try to solve that:
??? sym c;
|
Error: Missing operator, comma, or semicolon.
what is going on?