Activity 9.8.
For the functions
find the derivatives of the following functions using MATLAB:
Please put your MATLAB code into the textbox.
polyder
function. Not only can this function find the derivative of a polynomial, it can also find the derivative of the product or the quotient of two polynomials. Which of these is performed depends on how you call the function.k = polyder(p)
k = polyder(p1, p2) % derivative of the product
% of two polynomials
conv
function to fist multiply the polynomials and then the polyder
function to take the derivative. But for large polynomials, letting the polyder
function do all the work is more efficient.polyder
function can take the derivative of a quotient of polynomials (this is also known as a rational function). Since the result of this computation is most likely a quotient of two polynomials, the polyder
function returns a numerator and a denominator polynomial coefficient vector:[n d] = polyder(p1, p2) % derivative of the quotient
% of two polynomials, result
% is two polynomials - numerator
% and denominator