Basics Flashcards
(D) p-th moment, q-th centered moment
- p-th moment: E[|X|^p]
2. q-th centered moment: E[|X - µ|^q]
“Wall against ground”
Falls in Aufgabenstellung auftaucht: “plot a against b”, dann gehört a auf die y-Achse und b auf die x-Achse.
rep(1,5)
1, 1, 1, 1, 1
1:4
1, 2, 3, 4
seq(1,25,4)
1, 5, 9, 13, 17, 21, 25
v=c(1,2,3)
combine 1, 2, 3 into a vector v
v[i]
i-tes Element von v
length(v)
Länge von v
sort(v)
Einträge von v sortieren
sapply(v,f)
wende Funktion f auf alle Einträge von v an
cbind(v,w), rbind(v,w)
kombiniere v, w zu einer Matrix
matrix(v,3,5)
Matrix von v mit 3 Reihen und 5 Spalten
M %*% N
Matrizenprodukt M*N
t(M)
M transponiert
det(M)
Determinante von M
solve(M), solve(M,b)
Inverse von M, Lösung von Mx=b
eigen(M)
Eigenwerte und Eigenvektoren von M
apply(M,i,f)
wende f auf die Reihen (i=1) oder Spalten (i=2) der Matrix M an
write(v,“file.dat”)
schreibe Vektor v in die Datei “file.dat”
scan(“file.dat”)
lese die Datei “file.dat” und speichere als Vektor