MATLAB: How do you enter the command for a cube root

cube root

I'm re-working the volume of a sphere equation (V=(4*pi*r^3)/3) to solve for the radius(r).

Best Answer

Two simple options:
x^(1/3)
Or,
nthroot(x,3)
Be very careful though. If x is negative, it will return a complex number, because there are indeed THREE cube roots of a negative number. Two of them are complex. nthroot will give you the root you would expect however.
(-2)^(1/3)
ans =
0.62996 + 1.0911i
nthroot(-2,3)
ans =
-1.2599
In your case, it is not relevant, since the number will be non-negative.
Related Question