Scilab evaluation polynomial matrix
I would like to know if it is possible to evaluate a polynomial as a matrix in scilab.
For example :
A = floor(10*rand(3,3)); P = poly(A,"x"); horner(P,A)
should return the null matrix, but it evaluates P in each coefficient of A instead…