在 R 中求解非负线性系统
是否有可能使用一些原生 R 函数找到未定系统 Ax = b, x >= 0 的解?我当然可以编写一个线性程序并使用 lpsolve,但我希望有一些原生的东西。
Is it possible to find a solution to the undetermined system Ax = b, x >= 0 using some native R function? I can certainly write a linear program and use lpsolve, but am hoping for something native.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
事实上,我找到了我要找的东西。 nnls 包完全解决了我的问题。
Actually, I found what I was looking for. The package
nnls
addresses exactly my problem.