How do i write a polynomial and take the derivative?

조회 수: 2 (최근 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 CenterFile Exchange에서 Polynomials에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by