How do i write a polynomial and take the derivative?

2 visualizaciones (últimos 30 días)
Jose Grimaldo
Jose Grimaldo el 6 de Oct. de 2019
Respondida: Stephan el 6 de Oct. de 2019
I want to take the derivative of a polynomial, but Im not sure how to write the polynomial in the script T(A)=A^3 - A^2 - A -1. For the derivative do i use Polyder?

Respuesta aceptada

Stephan
Stephan el 6 de Oct. de 2019
>> T = [1 -1 -1 -1]
T =
1 -1 -1 -1
>> dT = polyder(T)
dT =
3 -2 -1

Más respuestas (0)

Categorías

Más información sobre Polynomials en Help Center y File Exchange.

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by