<< poly | Polynomials | polyfit >> |
k = polyder(p) |
k = polyder(a, b) |
[q, d] = polyder(a, b) |
vector: polynomial coefficients
row vector: polynomial coefficients
row vector: polynomial coefficients
row vector: differentiated polynomial coefficients
row vector: numerator polynomial
row vector: denominator polynomial
k = polyder(p) return the coefficients of the derivative of the polynomial whose coefficients are given by the vector p.
k = polyder(a, b) returns the derivative of the product of the polynomials a and b.
[q, d] = polyder(a, b) returns the derivative of the quotient of the polynomials a and b.
p = [30 0 -20 0 10 50];
q = polyder(p)
Version | Description |
---|---|
1.0.0 | initial version |
Allan CORNET