代码搜索:normal

找到约 10,000 项符合「normal」的源代码

代码结果 10,000
www.eeworm.com/read/298985/7902196

htm tc20functiono.htm

嵌入式软件设计教学网站
www.eeworm.com/read/298985/7902278

htm tc20functionv.htm

嵌入式软件设计教学网站
www.eeworm.com/read/198923/7903790

cpp n(-2,1).cpp

#define N 100000 #define DIV 35 /*从-8.7到+9.3等分45个区间,间距为0.4*/ #define SPACING DIV*0.4 #define MEAN -2 #define VARIANCE 1 #include "math.h" #include "stdio.h" main() {
www.eeworm.com/read/198923/7903793

cpp n(0,3.6).cpp

#define N 100000 #define DIV 45 /*从-9到+5等分35个区间,间距为0.4*/ #define SPACING DIV*0.4 #define MEAN 0 #define VARIANCE 1.8974 #include "math.h" #include "stdio.h" main() {
www.eeworm.com/read/398865/7914572

npl firmware.npl

JDF F // Created by Project Navigator ver 1.0 PROJECT Firmware DESIGN firmware Normal DEVFAM spartan2 DEVFAMTIME 0 DEVICE xc2s15 DEVICETIME 0 DEVPKG cs144 DEVPKGTIME 0 DEVSPEED -6 DEVSPEEDT
www.eeworm.com/read/433607/7919721

eqn pocp.fit.eqn

-- Copyright (C) 1991-2005 Altera Corporation -- Your use of Altera Corporation's design tools, logic functions -- and other software and tools, and its AMPP partner logic -- functions, and any o
www.eeworm.com/read/198623/7919775

c scan3.c

_Ierr (message, a, b, c, d, e) char message[]; { extern int cgoof; printf("ERROR "); printf(message, a, b, c, d, e); cputc('\n'); cexit(cgoof); } char _Iendm[128] {0}; _Imtab (formatp) char **f
www.eeworm.com/read/298871/7928862

m nndrawax.m

function h=nndrawax(c,e) %NNDRAWAX Neural Network Design utility function. % % NNDRAWAX(C) % C - Color (default = dark blue). % E - Erase mode (default = 'normal'); % Draws the x- and y-ax
www.eeworm.com/read/198545/7929176

m normq.m

function q = normq(p); %NORMQ NORMQ(P) is the inverse cumulative normal distribution function. % GKS 8 Oct 93 q = erfinv(2*p-1) * sqrt(2);
www.eeworm.com/read/198545/7929266

m normr.m

function r=normr(m,n); %NORMR NORMR(M,N) generates an M by N matrix of random deviates % from the standard normal distribution. % GKS 28 Jul 1999 r = randn(m,n);