代码搜索:normal
找到约 10,000 项符合「normal」的源代码
代码结果 10,000
www.eeworm.com/read/10589/187086
jpg normal.jpg
www.eeworm.com/read/490261/1206398
m normal.m
%产生n个N(a,b)正态分布随机数
%其中a为均值,b为方差
%function x=normal(a,b,n)
function x=normal(a,b,n)
m=48;%
for i=1:n
r=rand(1,m);
x(i)=a+sqrt(b)*(sum(r)-m/2)/sqrt(m/12);
end
www.eeworm.com/read/487262/1238088
m normal.m
%产生n个N(a,b)正态分布随机数
%其中a为均值,b为方差
%function x=normal(a,b,n)
function x=normal(a,b,n)
m=48;%
for i=1:n
r=rand(1,m);
x(i)=a+sqrt(b)*(sum(r)-m/2)/sqrt(m/12);
end
www.eeworm.com/read/485768/1259248
js normal.js
////////// JS theme file for PopCalendarXP 9.0 /////////
// This file is totally configurable. You may remove all the comments in this file to minimize the download size.
// Since the plugins are lo
www.eeworm.com/read/457670/1595634
tcl normal.tcl
# VARIABLE PART
set val(chan) Channel/WirelessChannel ;# channel type
set val(prop) Propagation/TwoRayGround ;# radio-propagation model
set val(netif) Phy/WirelessPh
www.eeworm.com/read/454889/1626678
m normal.m
%产生n个N(a,b)正态分布随机数
%其中a为均值,b为方差
%function x=normal(a,b,n)
function x=normal(a,b,n)
m=48;%
for i=1:n
r=rand(1,m);
x(i)=a+sqrt(b)*(sum(r)-m/2)/sqrt(m/12);
end
www.eeworm.com/read/250243/4432978
normal romscript.normal
OUTPUT_ARCH(mips)
SECTIONS
{
.text :
{
*(.text.start)
}
/* Data in ROM */
.data ALIGN(0x10) :
{
*(.data)
}
_image_start = ADDR(.data);
_image_size = SIZEOF(.data);
.oth