Computermathe
MATLAB
MATLAB
Kartei Details
Karten | 12 |
---|---|
Sprache | Deutsch |
Kategorie | Informatik |
Stufe | Universität |
Erstellt / Aktualisiert | 24.01.2017 / 14.03.2022 |
Weblink |
https://card2brain.ch/box/20170124_computermathe
|
Einbinden |
<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
erweiter diese funktion dassfläche und umfang zurückgegeben wird. nenne diese funktion computerCircle 2
function[flaeche, umfang]=Compu..
flaeche=pi*r hoch2
umfang= 2*pi *r
end
symbolischen Funktionsausdruck f=sin (1/2 k*t -pi/4) k=3, t=2, speicher in value
syms k
syms t
f=sin((0,5 *k*t)-(pi/4))
value=subs (f,k,3)
value=subs(value,t,2)
befehl solve mit xhoch 4 +x hoch 3 -16x hoch 2 -4x+48
solve(xhoch4.....+48==0,x)
differentieren sie funktion f nach t, ergebnis ist in der variable df_dt:
syms t
df_dt=diff(f,t)