MATLAB: Root function does not work:(

doubleroot functionundefined

>> a=[1 2 3];
>> root(a)
Undefined function 'root' for input arguments of type 'double'.
anybody knows why?

Best Answer

>> roots(a)
Related Question