일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- burp suite
- suninatas 풀이
- 조건문
- 포인터
- python
- 파이썬
- IF문
- jQuery
- github
- htmlspecialchars
- 백준 알고리즘
- document
- 김성엽 대표님
- lord of sql injection
- 백준 파이썬
- 함수
- 메소드
- object
- 자바스크립트
- 사칙연산
- sql injection
- 배열
- blind sql injection
- xss game 풀이
- window
- element 조회
- property
- Pwndbg
- 객체
- xss game
Archives
- Today
- Total
목록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