How do i write a polynomial and take the derivative?

1 回表示 (過去 30 日間)
Jose Grimaldo
Jose Grimaldo 2019 年 10 月 6 日
回答済み: Stephan 2019 年 10 月 6 日
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?

採用された回答

Stephan
Stephan 2019 年 10 月 6 日
>> T = [1 -1 -1 -1]
T =
1 -1 -1 -1
>> dT = polyder(T)
dT =
3 -2 -1

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangePolynomials についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by