MATLAB: I want from user to give two equation then i want to devition this two equation but it errors.

equationinput

syms s
num=input('please enter the numerator:','s')
den=please enter denominator:','s')
T=num/den

Best Answer

Do not use the 's' option of input() for this particular situation.