Premium Partner

Computermathe

MATLAB

MATLAB


Fichier Détails

Cartes-fiches 12
Langue Deutsch
Catégorie Informatique
Niveau Université
Crée / Actualisé 24.01.2017 / 14.03.2022
Attribution de licence Non précisé
Lien de web
https://card2brain.ch/box/20170124_computermathe
Intégrer
<iframe src="https://card2brain.ch/box/20170124_computermathe/embed" width="780" height="150" scrolling="no" frameborder="0"></iframe>

Erstellen Sie das Polynom p1 4x hoch 4 -5x hoch 3 +56 x hch 2 +15

 

p1=[4 -5 56 0 15]

 

multiplizieren sie das polynom 1 mit den polynom p2 xhoch 2 -9

p2=[0 0 1 0 -9]

addiren sie das ergebnis +p3(x) =3 hinzu

p12=conv(p1,p2)

p3=[00000003]

p3+p12

dividieren sie das ergbenis durch (x+3) bestimme q(x) und r(x)

p123=[ZAHLEN]

p4=[1 3]

[q,r]=deconv(p123,p4)

bestimme q(x) an der stelle x=1

polyval(q,1)

bestimme ableitung von q(x) mit ableitung

syms x y

y=4*x^5-17*x hoch 4+71*xhoch3.....

diff(y,x)

Mns der nullstelen von p2(x)=xhoch3 -10xhoch 2+31x-30

p2=[-10 31 -30]

roots(p2)

 

code editor computerCircle, welche den radius eines kreises

function[y]=ComputerCircle(r)

y=pi*rhoch 2

end