假设我得到以下结果:
a=FindInstance[2*b^2 + b^3 == b^4 + t && t < 10 && t > -1, {b, t},
Integers, 20]
{{b -> -1, t -> 0}, {b -> 0, t -> 0}, {b -> 1, t -> 2}, {b -> 2,
t -> 0}}
如何摆脱“b->”而只得到b个答案的数组?我可以通过以下方式到达一半:
a[[All,1]]
{b -> -1, b -> 0, b -> 1, b -> 2}
但是我如何才能做到:
{-1, 0, 1, 2}
谢谢
最佳答案
我可能会从dreeves的答案中遗漏一些东西,但是我一直认为您这样做的方式只是通过编写以下内容:
b /. a
the documentation for the
Solve
function的“基本示例”部分中有一个示例,该示例使用相同的输出样式。关于wolfram-mathematica - Mathematica : Getting rid of the "x ->" in FindInstance results,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/1616091/