|
Contents | Previous | Next | Subchapters |
| Syntax |
polyreduce(p) |
| See Also | conv , polmul |
2
length(p) * eps * max(abs(p))
where eps is machine epsilon
(if p is real, machine epsilon corresponds to
single precision, otherwise it corresponds to double precision.)
If the polynomial p is identically zero,
the scalar zero with the same type as p is returned.
p = [0, 1, 2]
polyreduce(p)
O-Matrix will reply
[ 1 , 2 ]