How do i write a polynomial and take the derivative?

1 Ansicht (letzte 30 Tage)
Jose Grimaldo
Jose Grimaldo am 6 Okt. 2019
Beantwortet: Stephan am 6 Okt. 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?

Akzeptierte Antwort

Stephan
Stephan am 6 Okt. 2019
>> T = [1 -1 -1 -1]
T =
1 -1 -1 -1
>> dT = polyder(T)
dT =
3 -2 -1

Weitere Antworten (0)

Kategorien

Mehr zu Polynomials finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by