代码搜索:Numeric
找到约 7,754 项符合「Numeric」的源代码
代码结果 7,754
www.eeworm.com/read/273525/4204588
ihlp f_ym.ihlp
{* 30nov2004}{...}
{phang}
{cmd:ym(}{it:y}{cmd:,}{it:m}{cmd:)} returns the elapsed
{cmd:%tm} monthly date for numeric year {it:y} and month {it:m}.{p_end}
www.eeworm.com/read/273525/4204640
ihlp f_yw.ihlp
{* 30nov2004}{...}
{phang}
{cmd:yw(}{it:y}{cmd:,}{it:w}{cmd:)} returns the elapsed
{cmd:%tw} weekly date for numeric year {it:y} and week {it:w}.{p_end}
www.eeworm.com/read/273525/4204780
ado roccomp_7.ado
*! version 7.1.7 17mar2005
program define roccomp_7, rclass
version 6, missing
syntax varlist(numeric min=2) [if] [in] [fweight] [, Graph SUMmary * ]
if "`if'"~="" {
local ifopt = "if `if'"
www.eeworm.com/read/273525/4204897
mata rowscalefactors.mata
*! version 1.0.1 11nov2004
version 9.0
mata:
real colvector rowscalefactors(numeric matrix A)
{
real colvector res
_editmissing(res = 1:/rowmaxabs(A), 1)
return(res)
}
end
www.eeworm.com/read/273525/4205294
mata colscalefactors.mata
*! version 1.0.1 11nov2004
version 9.0
mata:
real rowvector colscalefactors(numeric matrix A)
{
real rowvector res
_editmissing(res = 1:/colmaxabs(A), 1)
return(res)
}
end
www.eeworm.com/read/273525/4208079
ado varsoc.ado
*! version 1.1.6 01apr2005
program define varsoc, rclass byable(recall) sort
version 8.0
syntax [varlist(default=none ts numeric)] [if] [in], /*
*/ [ESTimates(string) /*
*/ Maxlag(strin
www.eeworm.com/read/273525/4208996
ado _svy2.ado
*! version 1.0.7 01apr2005
program _svy2, rclass sort
version 9
syntax varlist(numeric) [if] [in] ///
[pw iw], ///
TYPE(name) ///
[ ///
SVY ZEROweight ///
over(passthru)
www.eeworm.com/read/273525/4209143
ado _robust2.ado
*! version 1.0.5 01apr2005
program _robust2, rclass sort
version 9
syntax varlist(numeric) [if] [in] ///
[pw iw] [, ///
SVY ///
CLuster(varname) ///
SUBpop(passthru) ///
Va
www.eeworm.com/read/273525/4209342
ado _sumaccum.ado
*! version 1.1.1 18jan2005
program _sumaccum, rclass
version 8.0
syntax [varlist(numeric)] [if] [in] [fw iw pw][, MSE(name) ]
if "`mse'" != "" {
confirm matrix `mse'
if rowsof(`mse') !=
www.eeworm.com/read/273525/4210106
mata hqrd.mata
*! version 1.0.0 30sep2004
version 9.0
mata:
void hqrd(numeric matrix A, H, tau, R1)
{
_hqrd(H=A, tau, R1)
}
end