[Thesis Writing] Symbols: Multiplication of matrices and vectors, inner product, dot product, etc.

[Thesis Writing] Symbols: matrix, vector multiplication, inner product, dot product, etc.

1. Matrix multiplication

1.1 Matrix product

Matrix product (also called matmul product).

  • Symbol: ⋅ \cdot⋅or omit ( $\cdot$ 或 省略)
  • official
    Insert image description here

1.2 Matrix Haderm product

Hadamard product(又称element-wise product)。

  • Symbol: Use ⊙ \odot⊙or∘ \circ用 $\odot$ 或者 $\circ$
  • official
    Insert image description here

1.3 Matrix Kronecker product

Kronecker product.

  • Symbol: ⊗ \otimes$\otimes$
  • official
    Insert image description here

2. Vector multiplication

2.1 Vector dot product and inner product

Vector dot product, inner product (Inner Product, dot product).

  • Symbol: ⋅ \cdot⋅or omit ( $\cdot$ 或 省略)
  • official
    Insert image description here

2.2 Vector Hadamard product

The vector Hadamard product, also known as the Schur product, refers to a new vector obtained by multiplying the elements at corresponding positions in two vectors.

  • Symbol: Use ⊙ \odot⊙or∘ \circ用 $\odot$ 或者 $\circ$
  • 公式
    a = ( x 1 , y 1 ) , b = ( x 2 , y 2 ) , a ⊙ b = ( x 1 x 2 ,   y 1 y 2 ) a=(x1, y1),b=(x2, y2),a \odot b = (x1x2, \ y1y2) a=( x 1 ,y 1 ) b=( x 2 ,y2)ab=(x1x2, y 1 y 2 )

2.3 Vector outer product

Vector outer product (Outer product): The result of the outer product is a matrix.

  • Symbol: ⊗ \otimes$\otimes$
  • official
    Insert image description here

2.4 Vector cross product

Vector cross product: The result of the cross product is a vector.

  • Symbol: × \times×$\times$
  • official
    Insert image description here

Guess you like

Origin blog.csdn.net/qq_51392112/article/details/133219397