博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
numpy常用函数之random.normal函数
阅读量:4145 次
发布时间:2019-05-25

本文共 329 字,大约阅读时间需要 1 分钟。

numpy常用函数之random.normal函数

 

 

4、np.random.normal(loc=0.0, scale=1.0, size=None)

作用:

   生成高斯分布的概率密度随机数

loc:float    此概率分布的均值(对应着整个分布的中心centre)scale:float    此概率分布的标准差(对应于分布的宽度,scale越大越矮胖,scale越小,越瘦高)size:int or tuple of ints    输出的shape,默认为None,只输出一个值

举例:

nd1 = np.random.normal(loc=1,scale=2,size=2)#array([-0.46982446, -1.28956852])

转载地址:http://ypfti.baihongyu.com/

你可能感兴趣的文章
高性能服务器设计
查看>>
性能扩展问题要趁早
查看>>
MySQL-数据库、数据表结构操作(SQL)
查看>>
OpenLDAP for Windows 安装手册(2.4.26版)
查看>>
图文介绍openLDAP在windows上的安装配置
查看>>
Pentaho BI开源报表系统
查看>>
Pentaho 开发: 在eclipse中构建Pentaho BI Server工程
查看>>
JSP的内置对象及方法
查看>>
android中SharedPreferences的简单例子
查看>>
android中使用TextView来显示某个网址的内容,使用<ScrollView>来生成下拉列表框
查看>>
andorid里关于wifi的分析
查看>>
Spring MVC和Struts2的比较
查看>>
Hibernate和IBatis对比
查看>>
Spring MVC 教程,快速入门,深入分析
查看>>
Android 的source (需安装 git repo)
查看>>
Commit our mod to our own repo server
查看>>
LOCAL_PRELINK_MODULE和prelink-linux-arm.map
查看>>
Simple Guide to use the gdb tool in Android environment
查看>>
Netconsole to capture the log
查看>>
Build GingerBread on 32 bit machine.
查看>>