Unable to find functional inverse of power function

조회 수: 1 (최근 30일)
Jun Liang
Jun Liang 2022년 3월 8일
댓글: Jun Liang 2022년 3월 10일
for example, I have a function , and the inverse function of x is : or it can be written to
But when I use MATLAB, it throws a warning: Unable to find functional inverse.
code:
syms x theta
f = x^theta;
g = finverse(f, x);

채택된 답변

David Hill
David Hill 2022년 3월 8일
There is an inverse for some theta's but most theta's will produce imaginary results for negative values of x.
syms x
f=x.^3;
g = finverse(f);%this works but other values of theta will not previde a pure inverse function
  댓글 수: 1
Jun Liang
Jun Liang 2022년 3월 10일
thanks, Does this mean that finverse is invalid when imaginary values may appear in the function?

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Formula Manipulation and Simplification에 대해 자세히 알아보기

제품


릴리스

R2017b

Community Treasure Hunt

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

Start Hunting!

Translated by