Linear algebra codes
@Vector representation of python -Vector๋ฅผ python์ผ๋ก ํํํ๋ ๋ค์ํ ๋ฐฉ๋ฒ ์กด์ฌ # There are various ways to represent vectors in Python vector_a = [1, 2, 10] vector_b = (1, 2, 10) vector_c = {'x':1, 'y':1, 'x':10} print(vector_a, vector_b, vector_c) # [1, 2, 10] (1, 2, 10) {'x': 10, 'y': 1} -์ต์ ์ ๋ฐฉ๋ฒ์ ์์ -๊ฐ์ ๋ณ๊ฒฝ ์ ๋ฌด, ์์ฑ๊ฐ ์ ๋ฌด์ ๋ฐ๋ผ ์ ํ ๊ฐ๋ฅ # Vector calculation u = [2,2] v = [2,3] z = [3,5] result = [sum(i) for i in zip..