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);