代码搜索:Stepwise

找到约 97 项符合「Stepwise」的源代码

代码结果 97
www.eeworm.com/read/472943/1402623

m gendatafig5.m

% Generates data to test Stepwise phase transition with FDR criteria clear all; p = 200; numTrials = 50; deltaArr = linspace(0.05,1,50); rhoArr = linspace(0.05,1,50); zArr = linspace(0,4,16); ErrVec
www.eeworm.com/read/396844/2407871

m arfit.m

function [w, A, C, sbc, fpe, th]=arfit(v, pmin, pmax, selector, no_const) %ARFIT Stepwise least squares estimation of multivariate AR model. % % [w,A,C,SBC,FPE,th]=ARFIT(v,pmin,pmax) produces estimat
www.eeworm.com/read/472943/1402628

m gendatafig4.m

% Generates data to test Stepwise phase transition with noise clear all; n = 200; numTrials = 50; deltaArr = linspace(0.05,1,50); rhoArr = linspace(0.05,1,50); zArr = linspace(0,4,16); ErrVecL0 = ze
www.eeworm.com/read/233016/14173604

m mpdn.m

function [xrec, coef] = MPDN(y, NameOfDict, par1, par2, par3) % MPDN -- Matching Pursuit DeNoising (Forward Stepwise Regression) % Usage % [xrec, coef] = MPDN(y, NameOfDict, par1, par2, par3) %
www.eeworm.com/read/419476/10865922

h v4l2_enumfrmfmt.h

#ifndef __V4L2_ENUMFRMFMT_H #define __V4L2_ENUMFRMFMT_H /* * Enums */ enum v4l2_frmsizetypes { V4L2_FRMSIZE_TYPE_DISCRETE = 1, V4L2_FRMSIZE_TYPE_CONTINUOUS, V4L2_FRMSIZE_TYPE_STEPWISE, }; enu
www.eeworm.com/read/419476/10865935

svn-base v4l2_enumfrmfmt.h.svn-base

#ifndef __V4L2_ENUMFRMFMT_H #define __V4L2_ENUMFRMFMT_H /* * Enums */ enum v4l2_frmsizetypes { V4L2_FRMSIZE_TYPE_DISCRETE = 1, V4L2_FRMSIZE_TYPE_CONTINUOUS, V4L2_FRMSIZE_TYPE_STEPWISE, }; enu
www.eeworm.com/read/150065/12319018

sas reg6_10.sas

data reg6_10; input x y @@; x1=log(x); y1=log(y); x2=x1*x1; x3=x2*x1; cards; 25 20 50 30.5 100 47 200 52.0 400 67 800 87 ; proc reg; model y=x1 x2 x3/selection=stepwise P cli