代码搜索:ESTIMATION
找到约 3,786 项符合「ESTIMATION」的源代码
代码结果 3,786
www.eeworm.com/read/351636/3106174
dat brainweb.em.0pn.1ext.dat
"case" "class" "mapped class" "mean.1" "mean.2" "sigma.1" "sigma.2" "sigma.3" "sigma.4" "proportion" "1" "2" "3" "iterations" "time estimation" "time total"
1 1 1 6.45466 120.223 10529.6 -3005.66 -3
www.eeworm.com/read/351636/3106180
dat brainweb.em.9pn.1ext.dat
"case" "class" "mapped class" "mean.1" "mean.2" "sigma.1" "sigma.2" "sigma.3" "sigma.4" "proportion" "1" "2" "3" "iterations" "time estimation" "time total"
1 1 2 75.6218 101.408 4354.8 -1230.07 -12
www.eeworm.com/read/351636/3106187
dat brainweb.em.9pn.2ext.dat
"case" "class" "mapped class" "mean.1" "mean.2" "sigma.1" "sigma.2" "sigma.3" "sigma.4" "proportion" "1" "2" "3" "iterations" "time estimation" "time total"
1 1 2 75.6218 101.408 4354.8 -1230.07 -12
www.eeworm.com/read/351636/3106192
dat brainweb.em.3pn.1ext.dat
"case" "class" "mapped class" "mean.1" "mean.2" "sigma.1" "sigma.2" "sigma.3" "sigma.4" "proportion" "1" "2" "3" "iterations" "time estimation" "time total"
1 1 2 54.946 110.947 4716.34 -1560.52 -15
www.eeworm.com/read/192035/8410468
m ar1.m
function [g,a,mu2]=ar1(x)
% AR1 - Allen and Smith AR(1) model estimation.
% Syntax: [g,a,mu2]=ar1(x);
%
% Input: x - time series (univariate).
%
% Output: g - estimate of the lag-one autocor
www.eeworm.com/read/177452/9451909
m 噪声子空间法 music.m
%MUSIC ALGORITHM
%DOA Estimation by ULA
%噪声子空间法。
clear all;
close all;
clc
N_x=1024; % Length of Signal
N=8; % Size of Rx Matrix
A=[4 3 3];
l=1.8;%波长
d=0.5*l;%阵元间距
M=3; % Number of Signa
www.eeworm.com/read/176193/9512748
m ls_time_2x2_code.m
function [H1,H2]=ls_time_2x2_code(y,chantype,sampletime)
% Pure time domain maximum likelihood estimation with 1536 subcarriers code
% H1,H2: freq channel response from two Tx to this Rx
% y: recei
www.eeworm.com/read/448935/7521669
m ar1.m
function [g,a,mu2]=ar1(x)
% AR1 - Allen and Smith AR(1) model estimation.
% Syntax: [g,a,mu2]=ar1(x);
%
% Input: x - time series (univariate).
%
% Output: g - estimate of the lag-one autocorrel
www.eeworm.com/read/483011/6607246
m em_gm_fast.m
function [W,M,V,L] = EM_GM_fast(X,k,ltol,maxiter,pflag,Init)
% [W,M,V,L] = EM_GM_fast(X,k,ltol,maxiter,pflag,Init)
%
% EM algorithm for k multidimensional Gaussian mixture estimation
% (EM_GM_fa
www.eeworm.com/read/479088/6699315
m weibmom.m
function [bh,ah] = weibmom(x);
% Estimation of Weibull parameters using the
% method of moments.
[n1 n2] = size(x);
n = n1*n2;
x = reshape(x,n,1);
m1 = (1/n)*sum(x); % First moment