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.
自己定義関数がある場合y=2x+1、その逆関数を取得したいのですがX=(Y-1)/2、Excel は役に立ちますか? またはsigmaplotやMatlabのような他のソフトウェア?
y=2x+1
X=(Y-1)/2
MATLAB では、Symbolic Math Toolboxがある場合、次を使用してこれを行うことができます。
syms x y; eqn = y == 2*x - 1 ; x = solve(eqn,x)