私は次のような単純な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:境界がV>0に更新されます。しかし、例外はまだあります