일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- element 조회
- xss game 풀이
- 객체
- 파이썬
- window
- object
- Pwndbg
- 함수
- 백준 파이썬
- jQuery
- 김성엽 대표님
- IF문
- blind sql injection
- 자바스크립트
- 메소드
- lord of sql injection
- 조건문
- property
- document
- 백준 알고리즘
- burp suite
- 배열
- sql injection
- suninatas 풀이
- 사칙연산
- htmlspecialchars
- xss game
- 포인터
- github
- python
Archives
- Today
- Total
목록import numpy (1)
power-girl0-0
[ Numpy ] 랜덤 생성
랜덤 생성 numpy는 몇몇 난수 발생 루틴을 제공한다. 아래는 이에 해당하는 난수 발생 루틴의 종류이다. random.normal random.rand random.randn random.randint random.random 0. 환경 설정 먼저, 활용을 위해서 세팅을 아래와 같이 해주자. import numpy as np import matplotlib.pyplot as plt 1. random.rand : 0~1 까지의 실수 난수가 발생한다. x = np.random.rand(3,2) print(x) x = np.random.rand(1000) plt.hist( x, 100) plt.show() 2. random.randn : 평균이 0 , 편차가 1인 정규분포로 난수를 발생시킨다. x = np...
언어/Python
2021. 3. 29. 13:44