我有一个简单的 SAS(9.2 版)程序,如下所示,
proc model;
cdf('normal',log(V/100)+1)=0.5;
bounds V>0;
solve V/solveprint;
run;
它抛出异常说雅可比矩阵是奇异的,
The Newton method Jacobian matrix of partial derivatives of the
equations with respect to the variables to be solved is singular.
此错误的可能原因是什么?
更新:我稍微简化了这个问题。修改为“cdf('normal', X)=0.5”时,无异常运行。
Update2:bounds更新为V>0;但异常仍然存在