一、伯努利模型公式 def bernoulli(p, x): return np.power(p, x) * np.power(1-p, 1-x) 伯努利模型是一种二元随机实验模型,用于描述事件只有两 … Continue reading 伯努利模型(1.5事件的独立性及伯努利模型)
一、伯努利模型公式 def bernoulli(p, x): return np.power(p, x) * np.power(1-p, 1-x) 伯努利模型是一种二元随机实验模型,用于描述事件只有两 … Continue reading 伯努利模型(1.5事件的独立性及伯努利模型)