Reputation: 41
if I have a self-defining function y=2x+1
, I want to get its inverse function X=(Y-1)/2
, Can excel help? or other software like sigmaplot or Matlab?
Upvotes: 0
Views: 89
Reputation: 19689
With MATLAB, if you have Symbolic Math Toolbox , you can do this using:
syms x y;
eqn = y == 2*x - 1 ;
x = solve(eqn,x)
Upvotes: 1