Use the polyder function to find the derivative of 2x3 – x2 + 4x – 5
belongs to book: MATLAB: A Practical Introduction to Programming and Problem Solving|Stormy Attaway|Fourth Edition| Chapter number:14| Question number:39.14
All Answers
total answers (1)
>> der = polyder([2 -1 4 5])
der =
6 -2 4
>> poly2sym(der)
ans =
6*x^2 - 2*x + 4
need an explanation for this answer? contact us directly to get an explanation for this answer