代码搜索:Variance
找到约 2,271 项符合「Variance」的源代码
代码结果 2,271
www.eeworm.com/read/244471/12861415
m gaussianmask.m
function M = gaussianMask(k,s)
% k: the scaling factor
% s: standard variance
R = ceil(3*s); % cutoff radius of the gaussian kernal
for i = -R:R,
for j = -R:R,
M(i+ R+1,j+R+1) =
www.eeworm.com/read/142062/12966997
m ip_07_10.m
% MATLAB script for Illustrative Problem 10, Chapter 7.
% echo on
clear;
K=1024; N=2*K; Ts=25; T=N*Ts; variance=0.5;
noise=sqrt(variance)*randn(1,N);
a=rand(1,(K-1)*4); % k-1符号,1个保护间隔0
a=sign(a
www.eeworm.com/read/323951/13306755
m ip_07_10.m
% MATLAB script for Illustrative Problem 10, Chapter 7.
echo on
K=10;N=2*K;T=100;variance=1;
noise=sqrt(variance)*randn(1,N);
a=rand(1,36);
a=sign(a-0.5);
b=reshape(a,9,4);
% Generate the 16QAM
www.eeworm.com/read/321050/13412831
m ip_07_10.m
% MATLAB script for Illustrative Problem 10, Chapter 7.
clear
echo on
K=10;N=2*K;T=100;variance=1;
noise=sqrt(variance)*randn(1,N);
a=rand(1,36);
a=sign(a-0.5);
b=reshape(a,9,4);
% Generate th
www.eeworm.com/read/313963/13577717
m ip_07_10.m
% MATLAB script for Illustrative Problem 10, Chapter 7.
clear
echo on
K=10;N=2*K;T=100;variance=1;
noise=sqrt(variance)*randn(1,N);
a=rand(1,36);
a=sign(a-0.5);
b=reshape(a,9,4);
% Generate th
www.eeworm.com/read/306478/13744603
m ip_07_10.m
% MATLAB script for Illustrative Problem 10, Chapter 7.
clear
echo on
K=10;N=2*K;T=100;variance=1;
noise=sqrt(variance)*randn(1,N);
a=rand(1,36);
a=sign(a-0.5);
b=reshape(a,9,4);
% Generate th
www.eeworm.com/read/303558/13812555
m ip_07_10.m
% MATLAB script for Illustrative Problem 10, Chapter 7.
clear
echo on
K=10;N=2*K;T=100;variance=1;
noise=sqrt(variance)*randn(1,N);
a=rand(1,36);
a=sign(a-0.5);
b=reshape(a,9,4);
% Generate th
www.eeworm.com/read/301928/13845620
m gaussianmask.m
function M = gaussianMask(k,s)
% k: the scaling factor
% s: standard variance
R = ceil(3*s); % cutoff radius of the gaussian kernal
for i = -R:R,
for j = -R:R,
M(i+ R+1,j+R+1) =
www.eeworm.com/read/146906/5734285
java callcontrolvariatetest.java
/* WARANTY NOTICE AND COPYRIGHT
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation;
www.eeworm.com/read/121297/6068898
c stat.c
#include
#include
int
main(void)
{
double data[5] = {17.2, 18.1, 16.5, 18.3, 12.6};
double mean, variance, largest, smallest;
mean = gsl_stats_mean(data, 1