代码搜索:Variance

找到约 2,271 项符合「Variance」的源代码

代码结果 2,271
www.eeworm.com/read/210159/15205767

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/167728/5453060

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
www.eeworm.com/read/293183/8310155

m pca.m

%PCA Principal Component Analysis % % [W,alf] = pca(A,n) % [W,n] = pca(A,alf) % % A principal component analysis is performed on the joint % covarianve matrix of the data in A. If A is a labeled da
www.eeworm.com/read/368337/9701174

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_mea
www.eeworm.com/read/170937/9779108

m hist2res.m

function [R]=hist2res(H,fun) % Evaluates Histogram data % [R]=hist2res(H) % % [y]=hist2res(H,fun) % estimates fun-statistic % % fun 'mean' mean % 'std' standard deviation % 'var' variance % 'sem' stan
www.eeworm.com/read/414455/11111345

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/201006/15418381

m basicpca.m

function [s, V, D] = basicpca(x, dim) % BASICPCA do simple linear PCA % % Usage: % s = BASICPCA(x, dim) % returns dim first PCA components of data, all scaled to % unity variance % [s, V
www.eeworm.com/read/201006/15418408

m vertcat.m

function c = vertcat(a, b) % VERTCAT concatenate two probdist objects vertically % % Arrays of probdists are made by composing such arrays of respective % expectations and variances. % Copyright (C)
www.eeworm.com/read/201006/15418411

m horzcat.m

function c = horzcat(a, b) % HORZCAT concatenate two probdist objects horizontally % % Arrays of probdists are made by composing such arrays of respective % expectations and variances. % Copyright (C
www.eeworm.com/read/102394/15783172

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