代码搜索:normal
找到约 10,000 项符合「normal」的源代码
代码结果 10,000
www.eeworm.com/read/167185/5462086
c normal.c
normal(R,a,p,n)
/* rtflag=1 if singular, rtflag=2 if non-pos-definite */
double R[],a[],p[];
register int n;
{
register int i,j,ss,s,iM;
int rtflag;
register double ci,po,pf,temp;
rtflag=0;
fo
www.eeworm.com/read/167185/5462201
c normal.c
normal(R,a,p,n)
/* rtflag=1 if singular, rtflag=2 if non-pos-definite */
double R[],a[],p[];
register int n;
{
register int i,j,ss,s,iM;
int rtflag;
register double ci,po,pf,temp;
rtflag=0;
fo
www.eeworm.com/read/337546/3329355
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
www.eeworm.com/read/330923/3419291
xpm normal.xpm
/* XPM */
static const char * normal_xpm[] = {
"16 16 111 2",
" c None",
". c #000000",
"+ c #030304",
"@ c #020303",
"# c #030303",
"$ c #030404",
"% c #040404",
"& c #A1B0BD",
"* c #8898A5
www.eeworm.com/read/324920/3488314
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
www.eeworm.com/read/321483/3533860
t normal.t
BEGIN {
unless ("A" eq pack('U', 0x41)) {
print "1..0 # Unicode::Collate " .
"cannot stringify a Unicode code point\n";
exit 0;
}
if ($ENV{PERL_CORE}) {
chdir('t') if -d 't';
@INC
www.eeworm.com/read/318028/3572755
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/318028/3572855
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