Using MATLAB exponential function:
(-8)^0.333333
ans = 1.0000 + 1.7320i
How to get (-8)^0.333333 = -2 instead?
x=-10:-1;
x.^0.333333
How to get real value?
How to redefine ^:
x.^y
to
sign(x).*abs(x.^y))
|
Using MATLAB exponential function:
How to get
How to get real value? How to redefine
to
| |||||||
feedback
|
|
MATLAB 7.0 provides the If you are using a version prior to MATLAB 7.0 (R14), please read the following: To obtain the real cube root of a negative real number "x", rather than executing:
use the command:
This will find the absolute value of the root and modify it by the sign of the argument. | |||
feedback
|
|
There are 3 possible answers for the cube root of -8: You probably want | |||
|
feedback
|
|
In Matlab (and a bunch of other math programs), the power of a number is done by the magnitude and angle on the complex plane. Since If you want the real answer, you need to factor out the -1 and put it back.
| |||||||||||
feedback
|