nonlinear square时,stata给出下面的例子
模型:y=B0*(1-exp(-B1*x))
program define nlnexpgr
if "`1'" == "?" { /* if query call ... */
global S_1 "B0 B1" /* declare parameters */
global B0=1 /* and initialize them */
global B1=.1
exit
}
replace `1'=$B0*(1-exp(-$B1*x)) /* otherwise, calculate function */
end
请问第二行注释中query call是什么意思