Unable to find functional inverse of power function
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Jun Liang
el 8 de Mzo. de 2022
Comentada: Jun Liang
el 10 de Mzo. de 2022
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);
0 comentarios
Respuesta aceptada
David Hill
el 8 de Mzo. de 2022
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
Más respuestas (0)
Ver también
Categorías
Más información sobre Formula Manipulation and Simplification en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!