代码搜索:normal
找到约 10,000 项符合「normal」的源代码
代码结果 10,000
www.eeworm.com/read/226162/4788018
c normal.c
/*****************************************************************************
* Copyright (C) 2001 Acer Labs, Inc. All Rights Reserved.
* File: ui_normal.c
* Contents: normal process
* His
www.eeworm.com/read/216802/4885233
h normal.h
/*
** License Applicability. Except to the extent portions of this file are
** made subject to an alternative license as permitted in the SGI Free
** Software License B, Version 1.1 (the "License")
www.eeworm.com/read/216802/4885236
c normal.c
/*
** License Applicability. Except to the extent portions of this file are
** made subject to an alternative license as permitted in the SGI Free
** Software License B, Version 1.1 (the "License")
www.eeworm.com/read/216676/4888861
hpp normal.hpp
//===========================================================================//
// File: normal.hh //
// Contents: Implementation details for t
www.eeworm.com/read/216676/4888868
cpp normal.cpp
//===========================================================================//
// File: normal.cc //
// Contents: Implementation details for t
www.eeworm.com/read/209559/4959958
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/209211/4984576
c normal.c
/* Normal-format output routines for GNU DIFF.
Copyright (C) 1988, 1989, 1993 Free Software Foundation, Inc.
This file is part of GNU DIFF.
GNU DIFF is free software; you can redistribute it and/
www.eeworm.com/read/205824/5020649
h normal.h
/*
** License Applicability. Except to the extent portions of this file are
** made subject to an alternative license as permitted in the SGI Free
** Software License B, Version 1.1 (the "License")
www.eeworm.com/read/205824/5020652
c normal.c
/*
** License Applicability. Except to the extent portions of this file are
** made subject to an alternative license as permitted in the SGI Free
** Software License B, Version 1.1 (the "License")
www.eeworm.com/read/200409/5065858
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