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 | 31 |
Tags
- 일차변환
- trivial solution
- nonhomogeneous linear system
- itertools
- Big Theta
- 배열 섞기
- matrix fo a linear transformation
- nontrivial solution
- one-to-one
- 빅세타
- 알고리즘 분석의 실례
- python
- homogeneous linear system
- 빅오 표기법
- matrix-vector product
- Big-O 예제
- Big-Oh 예제
- solutions of matrix equation
- Big-Oh notation
- NumPy
- 랜덤 순서 배열
- 코틀린 시작하기
- 코틀린 Hello World!
- Big Omega
- 빅오메가
- 이진 탐색
- linear dependence
- 재귀함수
- recursive algorithms
- matrix trnasformations
Archives
- Today
- Total
목록np.nonzero (1)
코딩 연습
(파이썬) numpy.nonzero
numpy 모듈의 nonzero 함수는 요소들 중 0이 아닌 값들의 index 들을 반환해 주는 함수이다. 다음의 예제를 보자. >>> import numpy as np >>> a=np.array([1, 0, 2, 3, 0]) >>> np.nonzero(a) (array([0, 2, 3]),) 0이 아닌 값 1, 2, 3 의 index 인 0, 2, 3 을 array 형태로 리턴해 주는 것을 볼 수 있다. 그런데 a 가 2D array 가 되면 그 결과를 보기가 좀 복잡해 진다. >>> a=np.array([[1, 0, 7], [8, 1, 0], [1, 0, 0]]) >>> a array([[1, 0, 7], [8, 1, 0], [1, 0, 0]]) >>> np.nonzero(a) (array([0, 0..
Python
2017. 3. 25. 06:04