You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
8 lines
171 B
8 lines
171 B
% POLYDIFF pd = polydiff(p)
|
|
%
|
|
% Return the coefficients of the derivative of polynomial p
|
|
%
|
|
function pd = polydiff(p)
|
|
n = length(p)-1;
|
|
|
|
pd = [n:-1:1] .* p(1:n);
|