farmeter / random

0 stars 0 forks source link

벡터 연산 #45

Open farmeter opened 3 years ago

farmeter commented 3 years ago

벡터연산

벡터 특징

Dot Product (벡터 특징)

1) commutative : 순서를 바꿔도 결과는 동일합니다. rs=sr 2) distributive : 괄호 안의 벡터를 풀어서 계산할 수 있습니다. r(s+t) = rs+rt 3) associative : 순서가 상관이 없기 때문에 결합이 자유롭게 됩니다. r(as) = a(rs), r(iasi)+rj(asj) = a(risi+rjsj)

Projection

Changing basis (co-ordinate system)

출처: https://sacko.tistory.com/61?category=630831 [데이터 분석하는 문과생, 싸코]