ある関数y=f(x)についての逆関数の作り方

9 views (last 30 days)
Yu Horiuchi
Yu Horiuchi on 27 May 2021
Commented: Atsushi Ueno on 24 Jun 2021
ある関数y=f(x)とおいて、それを逆関数y=f1(x)に書き換えるコードを教えてください。

Accepted Answer

Atsushi Ueno
Atsushi Ueno on 27 May 2021
syms x
f(x) = 1/tan(x);
g = finverse(f)
g(x) =
atan(1/x)
  1 Comment
Atsushi Ueno
Atsushi Ueno on 24 Jun 2021
回答の状態がaccepted→unaccepted(Reason: This answer did not work for me)に変わっていました。 具体的な理由を頂けますと何かコメント出来るかもしれません。

Sign in to comment.

More Answers (0)

Categories

Find more on Symbolic Math Toolbox in Help Center and File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!