Numpy & Scipy - 1.3 Basic Manipulation of Matrices (1)
copy (deep copy) np.copy : deep copy, 새로운 메모리 공간을 참조하여 할당 a = np.array([[1, 2.5, 3], [-1, -2, -1.5], [4, 5.5, 6]], dtype=np.float64) b = a # swallow copy, 같은 메모리 공간을 참조한다. a[0,0] =...
copy (deep copy) np.copy : deep copy, 새로운 메모리 공간을 참조하여 할당 a = np.array([[1, 2.5, 3], [-1, -2, -1.5], [4, 5.5, 6]], dtype=np.float64) b = a # swallow copy, 같은 메모리 공간을 참조한다. a[0,0] =...
eye / identity np.eye : band에 1을 채워 넣는 함수이다. a = np.eye(2,3, k=1, dtype=np.float64) # 2, 3 은 각 row, column 이고 k 는 band id 를 뜻하는 파라미터, dtype 은 데이터 타입 [[0. 1. 0.] [0. 0. 1.]]...
Numpy 의 특징 수학,과학 계산을 위한 라이브러리이다. 행렬 및 배열을 처리하거나 연산한다. random.rand 난수를 생성할 수 있다. 행렬 생성 import numpy as np # numpy 패키지를 로드하여 np 라는 이름으로 사용 a = np.array([[1,2,3],[4,5,6],[7,8,...
Mac : cmd + , Windows : ctrl + , 설정으로 들어가서 “format on save” 검색 후 체크 해제..
용어 정리 Pseudoinverse - 유사역행렬 Hermitian matrix - 에르미트 행렬 tridiagonal - 삼중 대각 행렬 (upper band = 1, lower band = 1) Toeplitz matrix - 테플리츠 행렬 Circulant matrix - 순환 행렬 I...
용어 정리 Singular Value - 특이값 Singular Value Decomposition - 특이값 분해 SVD, Singular Value Decomposition 란? 여태껏 배웠던 모든 것은 다 SVD를 배우기 위해 빌드업을 한 것이다.. 선형대수의 꽃 SVD에 대해 알아보자. ...
에러 원인 파악 FFmpeg Unity Bind 2 라는 플러그인을 추가 camera, microphone 접근을 하지 않다가 플러그인을 넣은 뒤로 엑세스를 하는 것으로 추정 에러 로그 Microphone class is used but Microphone Usage Description is empty in Player ...
용어 정리 Quadratic Forms - 이차 형식 Constrained Optimization - 구속 최적화 Constrained Optimization - 구속 최적화 Constrained Optimization 은 quadratic form $ Q(\mathbf{x}) = \mathbf{x}...
용어 정리 Quadratic Forms - 이차 형식 degree - 차수 The matrix of the quadratic form - 이차 형식의 행렬 The Principal Axes Theorem - 주축 정리 Classifying Quadratic Form - 이차 형식 분류하기 ...
용어 정리 multiplicity - 중근 Symmetric - 대칭의 Symmetric Matrix - 대칭 행렬 Orthogonally Diagonalization - 직교 대각화 Spectral Theorem - 스펙트럼 정리 Spectral Decomposition - 스펙트럼 분해 ...