TA的每日心情 | 郁闷 2016-4-30 10:02 |
---|
签到天数: 1 天 连续签到: 1 天 [LV.1]测试小兵
|
#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()
|
|