Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- 코틀린 시작하기
- homogeneous linear system
- Big Theta
- 코틀린 Hello World!
- matrix fo a linear transformation
- one-to-one
- Big-Oh 예제
- python
- 빅오메가
- nonhomogeneous linear system
- solutions of matrix equation
- Big Omega
- 빅세타
- 빅오 표기법
- Big-Oh notation
- 일차변환
- 재귀함수
- linear dependence
- nontrivial solution
- matrix-vector product
- 랜덤 순서 배열
- Big-O 예제
- 이진 탐색
- trivial solution
- matrix trnasformations
- 알고리즘 분석의 실례
- 배열 섞기
- itertools
- recursive algorithms
- NumPy
Archives
- Today
- Total
코딩 연습
(파이썬) numpy.amax 본문
반응형
numpy 모듈의 amax 함수는 array 의 최댓값을 반환하는 함수이다. 다음 예를 보자.
>>> import numpy as np
>>> a = np.range(4)
>>> a
array([0, 1, 2, 3])
>>> np.amax(a)
3
위 예에서 볼 수 있듯이 np.amax(a) 는 array [0, 1, 2, 3] 의 요소 중 가장 큰 값이 3을 반환하는 거을 알 수 있다.
amax 함수는 행렬 (matrix) 에서 행이나 열 각각에 대한 최댓값을 반환해 주기도 한다.
>>> a = np.arange(4).reshape((2, 2))
>>> a
array([[0, 1],
[2, 3]])
>>> np.amax(a, axis=0)
array([2, 3])
>>> np.amax(a, axis=1)
array([1, 3])
reshape((2, 2)) 는 array [0, 1, 2, 3] 을 $2 \times 2$ 행렬 $\begin{bmatrix}0&1\\2&3\\ \end{bmatrix}$ 으로 만들어 준다.
np.amax(a, axis=0) 으로 준 경우 각 열의 최댓값로 구성된 array [2, 3] 을 리턴한다. 즉, 1열 $\begin{bmatrix} 0\\2\\ \end{bmatrix}$ 의 최댓값은 2 이고, 2열 $\begin{bmatrix} 1\\3\\ \end{bmatrix}$ 의 최댓값은 3 이므로 array [2, 3] 이 리턴되는 것이다.
np.amax(a, axis=1) 로 경우는 각 행의 최댓값으로 구성된 array [1, 3] 을 리턴한다. 즉, 1행 $\begin{bmatrix} 0&1 \end{bmatrix}$ 의 최댓값은 1이고, 2행 $\begin{bmatrix} 2&3 \end{bmatrix}$ 의 최댓값은 3 이므로 array [1, 3] 이 리턴되는 것이다.
반응형
'Python' 카테고리의 다른 글
(파이썬) numpy.nonzero (0) | 2017.03.25 |
---|---|
(파이썬) numpy.arange (0) | 2017.03.25 |
(파이썬) Python 내장함수 all (0) | 2017.03.24 |
(파이썬) functools 모듈의 reduce 함수 (0) | 2017.03.23 |
(파이썬) Python 내장함수 enumerate (0) | 2017.03.22 |
Comments