将 Roots[] 的输出收集到列表中
如果我执行 Roots[ax^2 + bx + c == 0, x],则输出为
x == (-b - Sqrt[b^2 - 4 ac])/ (2a)|| x == (-b + Sqrt[b^2 - 4 ac])/(2 a)
如何将 Roots
的输出收集到这样的列表 { (-b - Sqrt[b^2 - 4 ac])/(2 a), (-b + Sqrt[b^2 - 4 ac])/(2 a)}
以便我可以绘制它?
If I do Roots[a x^2 + b x + c == 0, x]
, the output is
x == (-b - Sqrt[b^2 - 4 a c])/(2 a) ||
x == (-b + Sqrt[b^2 - 4 a c])/(2 a)
How do I collect the output of Roots
into a list like so {(-b - Sqrt[b^2 - 4 a c])/(2 a), (-b + Sqrt[b^2 - 4 a c])/(2 a)}
so that I can plot it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
另一种(明显?}方法:
给出
An alternative (obvious?} method:
giving