Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 MuPAD 中有一个关于各种变量的函数,如z = f(x,y,...). 现在我想重新排列方程以x表达z。我还没有找到合适的命令来这样做。
z = f(x,y,...)
x
z
使用solve. 例子:
solve
syms x y z X = solve('z = x^3 + y^3 - 1', x);