[Home] [Lexikon] [Aufgaben] [Tests] [Kurse] [Begleitmaterial] [Hinweise] [Mitwirkende] [Publikationen] | |
Mathematik-Online-Aufgabensammlung: Lösung zu | |
Interaktive Aufgabe 1091: Kurvendiskussion für ein Polynom |
A B C D E F G H I J K L M N O P Q R S T U V W X Y Z |
% zeros, extrema, and inflection points of a polynomial % coefficients of derivatives p = [-1 16 -95 260 -324 144]; dp=polyder(p); ddp=polyder(dp); % zeros of derivatives zp = roots(p) zdp = roots(dp) zddp = roots(ddp) % plotting p hold on; x = linspace(min(zp), max(zp)); y = polyval(p,x); plot(x,y); % marking points x = [zp; zdp; zddp]; y = polyval(p,x); plot(x,y,'o'); hold off;
automatisch erstellt am 5. 7. 2007 |