代码搜索:Variance
找到约 2,271 项符合「Variance」的源代码
代码结果 2,271
www.eeworm.com/read/405069/11472220
m mean_bootstrap.m
function [mu, bias, varjack] = mean_bootstrap(data, B)
%Find the estimate of the mean, it's bias and variance using the bootstrap estimator method
%Inputs:
% data - The data from which to estimat
www.eeworm.com/read/261137/11664476
c mrandom.c
#include
#include
#include
#include "msp.h"
float randnu(long *iseed)
{
float z;
*iseed=2045*(*iseed)+1;
*iseed=*iseed-(*iseed/1048576)*10
www.eeworm.com/read/155167/11892782
c gran.c
/* gran.c - gaussian random number generator */
double ran(); /* uniform generator */
double gran(m, s, iseed) /* usage: x = gran(m, s, &iseed); */
double
www.eeworm.com/read/154996/11907539
m awgn.m
%*************************************************************************************
% This function pertains to the addition of AWGN with mean zero and
% parameter 'variance' to
www.eeworm.com/read/257228/11941964
h rgen.h
// Copyright 2000 by Robert Dick.
// All rights reserved.
#ifndef R_GEN_H_
#define R_GEN_H_
/*###########################################################################*/
#include "HolderPtr.h"
#in
www.eeworm.com/read/343492/11944292
m normalize_tcaresult.m
function W=normalize_tcaresult(x,W,tree)
% normalizing W
% we only assume that the components have unit variance
m=size(x,1);
n=size(x,2);
mu = mean(x,2);
sigma = 1 / n * ( x - repmat(mu,1,n) )
www.eeworm.com/read/343002/11984589
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/342996/11984745
readme
$Id: README,v 1.3 2002/06/19 18:55:08 dlowder Exp $
General
=======
The idea of tslib is to have a core library that provides standardised
services, and a set of plugins to manage the conversi
www.eeworm.com/read/342996/11984798
conf ts.conf
module variance xlimit=50 ylimit=50 pthreshold=1
module dejitter xdelta=10 ydelta=10 pthreshold=1
module linear
www.eeworm.com/read/341901/12055988
c mrandom.c
#include
#include
#include
#include "msp.h"
float randnu(long *iseed)
{
float z;
*iseed=2045*(*iseed)+1;
*iseed=*iseed-(*iseed/1048576)*10