Bus errorとSegmentation faultに困ったら見るブログ

物理の研究者による日々の研究生活のメモ書きです ( python/emacs/html/Japascript/シェルスクリプト/TeX/Mac/C言語/Linux/git/tmux/R/ポケモンGO)

2025-07-17から1日間の記事一覧

【python3】乱数を使いたい

一様乱数 from numpy.random import * rand() #0~1の範囲の一様乱数を1個作る rand(10) #0~1の範囲の一様乱数を10個作る 正規分布に従う乱数を作る from numpy.random import * randn() #平均0, 標準偏差1の正規分布に従う乱数を1個作る randn(10) #平均0, …