标签: wolfram-mathematica
在Mathematica中针对某些功能f[x]我想Solve[f[x] == a, x]并将解决方案记录为Subscript[x, 1, a], Subscript[x, 2, a],依此类推。
Mathematica
f[x]
Solve[f[x] == a, x]
Subscript[x, 1, a], Subscript[x, 2, a]
如果
答案 0 :(得分:5)
对两种情况都适用的一种方法是做类似
MapIndexed[(Subscript[x, #2[[1]], a] = x /. #1) &, Solve[f[x] == a, x]]