MATLAB: Error) ss2tf is not read

errorMATLABss2tf

In this way, the ss2tf function is not read. Other computers can read the same code, but not mine. It has already been reinstalled for the third time and control system toolbox is also installed. What is the solution?

Best Answer

Ah!! You see. Posting the full error message made the problem clear. You have defined a function named 'poly'. MATLAB also has a function named poly. This confuses MATLAB. Change the name of your function to something else.
Type
which poly -all
it will give you a list of functions. One of those functions was created by you. Change its name to something else.