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

ある関数y=f(x)とおいて、それを逆関数y=f1(x)に書き換えるコードを教えてください。

 Respuesta aceptada

Atsushi Ueno
Atsushi Ueno el 27 de Mayo de 2021

2 votos

syms x
f(x) = 1/tan(x);
g = finverse(f)
g(x) =
atan(1/x)

1 comentario

Atsushi Ueno
Atsushi Ueno el 24 de Jun. de 2021
回答の状態がaccepted→unaccepted(Reason: This answer did not work for me)に変わっていました。 具体的な理由を頂けますと何かコメント出来るかもしれません。

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre プログラミング en Centro de ayuda y File Exchange.

Etiquetas

Preguntada:

el 27 de Mayo de 2021

Comentada:

el 24 de Jun. de 2021

Community Treasure Hunt

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

Start Hunting!