How do i write a polynomial and take the derivative?
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
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?
0 comentarios
Respuesta aceptada
Stephan
el 6 de Oct. de 2019
>> T = [1 -1 -1 -1]
T =
1 -1 -1 -1
>> dT = polyder(T)
dT =
3 -2 -1
0 comentarios
Más respuestas (0)
Ver también
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!