coeffs
extract all coefficients of a multivariate polynomial
Calling Sequence
Parameters
Description
Thread Safety
Examples
coeffs(p, x, 't')
p
-
multivariate polynomial
x
(optional) indeterminate or list/set of indeterminates
t
(optional) an unevaluated name
The coeffs function returns an expression sequence of all the coefficients of the polynomial p with respect to the indeterminate(s) x.
If x is not specified, coeffs computes the coefficients with respect to all the indeterminates of p (see the indets function). If a third argument t is specified (call by name), it is assigned an expression sequence of the terms of p. There is a one-to-one correspondence between the coefficients and the terms of p.
Note that p must be collected (collect) with respect to the appropriate indeterminates. For multivariate polynomials, you may need to use collect with `distributed`.
The coeffs command is thread-safe as of Maple 15.
For more information on thread safety, see index/threadsafe.
For multivariate polynomials, you may need to use collect with `distributed`.
Error, invalid arguments to coeffs
See Also
coeff
collect
indets
lcoeff
PolynomialTools[CoefficientVector]
tcoeff
Download Help Document