代码搜索:deviation
找到约 1,443 项符合「deviation」的源代码
代码结果 1,443
www.eeworm.com/read/202788/15372888
m normal.m
function y=normal(x,m,s)
% FUNCTION y=NORMAL(x,m,s)
% Gaussian distribution
% m=mean
% s=standard deviation
y=(1/sqrt(2*pi*s^2))*exp(-((x-m).^2)/(2*s^2));
www.eeworm.com/read/202486/15382040
cpp pr0632.cpp
// Programming with C++, Second Edition, by John R. Hubbard
// Copyright McGraw-Hill, 2000
// Problem 6.32 on page 146
// Computing the standard deviation
#include // defines the
www.eeworm.com/read/200680/15427605
cpp lbtreedoc.cpp
// LBTreeDoc.cpp : implementation of the CLBTreeDoc class
//
#include "stdafx.h"
#include "LBTree.h"
#include "LBTreeDoc.h"
#include "Random.h"
#include "NPoint.h"
#ifdef _DEBUG
#define
www.eeworm.com/read/109447/15557362
java agentvariants.java
package asm;
/**
* Title: Artificial Stock Market
* Description: 人工模拟股市(来源:SFI的Swarm版本)的Java版本
* Copyright: Copyright (c) 2003
* Company: http://agents.yeah.net
* @author jake
*
www.eeworm.com/read/101557/15826436
m normal.m
function y=normal(x,m,s)
% FUNCTION y=NORMAL(x,m,s)
% Gaussian distribution
% m=mean
% s=standard deviation
y=(1/sqrt(2*pi*s^2))*exp(-((x-m).^2)/(2*s^2));
www.eeworm.com/read/101557/15826593
m normal.m
function y=normal(x,m,s)
% FUNCTION y=NORMAL(x,m,s)
% Gaussian distribution
% m=mean
% s=standard deviation
y=(1/sqrt(2*pi*s^2))*exp(-((x-m).^2)/(2*s^2));
www.eeworm.com/read/101557/15827310
m gwnoise.m
function [m, d, s] = gwnoise(m, d, s)
%GWNOISE generates a valid mean value, standard deviation and seeds for GWNOISE block.
% [M, D, S] = GWNOISE(M, D, S) checks input mean M, standard deviation D,
www.eeworm.com/read/193327/8238726
h test_ez_audio.h
/*********************************************************************************
Copyright(c) 2005 Analog Devices, Inc. All Rights Reserved.
This software is proprietary and confidential. By
www.eeworm.com/read/386050/8769492
m gencirc.m
%GENCIRC Generation of a one-class circular dataset
%
% A = GENCIRC(N,S)
%
% INPUT
% N Size of dataset (optional; default: 50)
% S Standard deviation (optional; default: 0.1)
%
% OUTPUT
%
www.eeworm.com/read/372592/9501139
txt d13r1.txt
Private Sub Command1_Click()
'PROGRAM D13R1
'Driver for routine MOMENT
PI = 3.14159265
NPTS = 10000
NBIN = 100
NDAT = NPTS + NBIN
Dim DATA(100100)
I = 1
Fo