具有多维参数数组的 R optim/nlm
我正在使用 optim/nlm 进行最大似然估计,并且我的参数位于多维数组中。
似然评估良好,即给定数据 x 和参数 theta 的多维数组,likelihood(theta,x) 给出实数。
然而,使用 optim/nlm,起始值与 theta 的维度相同,评估得很好,我收到以下错误:
Error in theta[1, 1, 1] : incorrect number of dimensions
评估可能性时。事实证明 optim/nlm 将我的多维数组展平为一维数组。无论如何,我可以将 optim/nlm 与多维参数数组一起使用吗?
I'm using optim/nlm to do a maximum likelihood estimation, and my parameters are in a multidimensional array.
The likelihood evaluates fine, i.e. given a data x, and multidimensional array of parameters theta, likelihood(theta,x) gives a real number.
However, using optim/nlm, with a starting value that has the same dimension as the theta had evaluated just fine, I'm getting the following error:
Error in theta[1, 1, 1] : incorrect number of dimensions
when evaluation the likelihood. It turns out that optim/nlm flattens my multidimensional array to a 1D array. Is there anyway I can use optim/nlm with a multidimensional array of parameters?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不相信
optim
本身可以实现这一点。我的建议是自己恢复形状,例如I do not believe this is possible with
optim
itself. My advice would be to restore the shape yourself, e.g.