Linear Algebra

Inner Product

  • xTy
  • t(x) %*% y

Norm

  • ||x||
  • norm(x, type = "2")
    • See help for other types

Cosine Angle

  • cosθ=xTy||x||2||y||2
  • (t(x) %*% y)/(norm(x, "2")*norm(y, "2"))