51Testing软件测试论坛

标题: 高数、绘制正态分布 [打印本页]

作者: liaoyongwei    时间: 2016-10-24 20:12
标题: 高数、绘制正态分布
#coding=utf-8
a = 0.3 * 3
print a
b = 0.3 / 3
print b
#1除以2的阶乘
c = 1 / 2 ** 10000
print c

import math
a  = math.pi
print a
a = math.sqrt(90)
print a
a = math.log10(2*1000)
print a
#X的Y次方
a = math.pow(2,10)
print a
#阶乘
a = math.factorial(3)
print a

import random
#产生0-1之间的随机数
random.random()
#等概率随机选择一个数
random.choice([2,3,4,5])
#A到B之间的整数随机选一个
random.randint(4,10)
#返回一个A到B之间均匀分布的随机数(浮点数)
random.uniform(1,10)
#高斯分布,均值方差,考试成绩建模
random.gauss(0.2,3)
#查math属性
#dir(math)
#help(math)
#中奖概率小于10%
random.random() <=0.1

#正态分布
#!/usr/bin/env python
#矩阵、正态分布、数组、矩阵求逆
import numpy as np
from matplotlib import pyplot as plt
#mu为中线,mu加减3*sigma
mu,sigma = 10, 1
#产生10000个样本存到数组中
s = np.random.normal(mu,sigma,10000)
#用matplotlib打印一个概率分布
n,bins,patches = plt.hist(s,100,normed=True)

plt.xlabel('X')
plt.ylabel('Y')
plt.title('liaoyongwei')
#plt.text(-4,2,r'$\mu=1,\ \sigma=2$')
plt.grid(True)
plt.show()





欢迎光临 51Testing软件测试论坛 (http://bbs.51testing.com/) Powered by Discuz! X3.2