아래 사이트에 올라온 문제를 풀면서 기초를 다지기 시작하였다. https://github.com/rougier/numpy-100 GitHub - rougier/numpy-100: 100 numpy exercises (with solutions) 100 numpy exercises (with solutions). Contribute to rougier/numpy-100 development by creating an account on GitHub. github.com 1. Import the numpy package under the name `np` (★☆☆) import numpy as np 2. Print the numpy version and the configuration (★☆☆) print(..
Numpy 정의 - 수학적 함수 모음 제공 - 배열 조작, 수학 연산, 선형 대수, 난수 생성 등을 위한 다양한 기능과 기능을 제공 Numpy 배열(행렬) 생성 # numpy 불러오기 import numpy as np # np.array([]): 배열 생성 a = np.array([1,2,3]) # np.arange(): 특정 범위 배열 생성 a = np.arange(3) print(a) #[0,1,2] # 3차원일 때 arange로 배열 생성 org = (1,2,3) nb = org[0]*org[1]*org[2] a = np.arange(nb).reshape(org) # 0, 1 배열 생성 a = np.zeros(3) # np.zeros(): 0으로 구성된 배열 생성 b = np.zeros((2,3,5..